From b8d3810bf115a5d61c6ea0e9c2cd910c695bd59a Mon Sep 17 00:00:00 2001 From: NestorEncinas Date: Wed, 11 Dec 2024 16:42:58 +0100 Subject: [PATCH 01/54] feat: customDateFilterConfig by settings risk: low JIRA: LX-686 --- .../src/recordedBackend/index.ts | 5 + .../api/sdk-backend-spi.api.md | 1 + .../src/workspace/dateFilterConfigs/index.ts | 9 +- .../workspace/dateFilterConfigs/index.ts | 279 ++------------ .../src/backend/workspace/index.ts | 2 +- .../DateFilterConfigurationConverter.ts | 351 ++++++++++++++++++ .../dateFilterConfig/defaultConfig.ts | 2 +- .../_staging/dateFilterConfig/validation.ts | 7 +- .../resolveDashboardConfig.ts | 59 ++- .../dateFilter/DefaultDashboardDateFilter.tsx | 16 +- 10 files changed, 460 insertions(+), 271 deletions(-) create mode 100644 libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts diff --git a/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts b/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts index c4a7144cfd6..7365e45a5eb 100644 --- a/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts +++ b/libs/sdk-backend-mockingbird/src/recordedBackend/index.ts @@ -634,6 +634,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 77efc58291c..0cad175bc0a 100644 --- a/libs/sdk-backend-spi/api/sdk-backend-spi.api.md +++ b/libs/sdk-backend-spi/api/sdk-backend-spi.api.md @@ -544,6 +544,7 @@ export interface IDateDataset { // @alpha export interface IDateFilterConfigsQuery { query(): Promise; + queryCustomDateFilterConfig(): Promise; withLimit(limit: number): IDateFilterConfigsQuery; withOffset(offset: number): IDateFilterConfigsQuery; } 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/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..3f8f973b8b3 --- /dev/null +++ b/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts @@ -0,0 +1,351 @@ +// (C) 2024 GoodData Corporation + +import { + IAbsoluteDateFilterPreset, + IRelativeDateFilterPreset, + IAbsoluteDateFilterForm, + IRelativeDateFilterForm, + IAllTimeDateFilterOption, + IDateFilterConfig, + DateFilterGranularity, + DateString, + idRef, +} 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; + return { + type: "relativeForm", + availableGranularities, + ...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-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/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/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} From 3b76983610301d5f33b9ba2b2026ca864342b451 Mon Sep 17 00:00:00 2001 From: NestorEncinas Date: Wed, 11 Dec 2024 20:28:07 +0100 Subject: [PATCH 02/54] feat: custom date filter config recordings risk: low JIRA: LX-686 --- .../TIGER/mapping-crossFiltering.spec.ts.json | 203 ++--- ...mapping-dashboardBasicActions.spec.ts.json | 155 ++-- .../mapping-dashboardRichText.spec.ts.json | 161 ++-- .../mapping-dashboardScatterPlot.spec.ts.json | 175 +++-- .../TIGER/mapping-dashboardTiger.spec.ts.json | 275 ++++--- ...ping-dashboardTigerWithCharts.spec.ts.json | 231 +++--- .../mapping-dependentFilters.spec.ts.json | 703 +++++++++--------- ...mapping-dragDropAndMoveWidget.spec.ts.json | 325 ++++---- .../TIGER/mapping-headerSection.spec.ts.json | 167 +++-- .../TIGER/mapping-hideFilters.spec.ts.json | 585 ++++++++------- .../mapping-hideFiltersTooltips.spec.ts.json | 547 +++++++------- .../mapping-insightOnDashboard.spec.ts.json | 217 ++++-- .../TIGER/mapping-manyData.spec.ts.json | 92 +-- .../mapping-multipleDateFilters.spec.ts.json | 304 +++++--- .../TIGER/mapping-scatterPlot.spec.ts.json | 58 +- .../mapping-unknownVisualization.spec.ts.json | 131 ++-- 16 files changed, 2406 insertions(+), 1923 deletions(-) diff --git a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-crossFiltering.spec.ts.json b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-crossFiltering.spec.ts.json index 315d082310c..01cfca6aa58 100644 --- a/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-crossFiltering.spec.ts.json +++ b/libs/sdk-ui-tests-e2e/recordings/mappings/TIGER/mapping-crossFiltering.spec.ts.json @@ -1,10 +1,10 @@ { "mappings": [ { - "id": "dd2dc344-6d47-40de-84a5-9d46fcaefc7c", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_e135e1efdd29479009cfbafb6ff90a156f69ce6e2a19e93fa2370c2a7a00502530f7e54645832f24c0099b76dffd1db2937649ff", + "id": "5e4a92e6-bc06-4d02-919b-6ab2365d3b8c", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_c28960725208d7d1b7e695b2473330d1e98dad496729a00b7b545704b361c17d33b212f0ce27c99fb8b9e32349ef01e6870ff1c5", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/e135e1efdd29479009cfbafb6ff90a156f69ce6e%3A2a19e93fa2370c2a7a00502530f7e54645832f24c0099b76dffd1db2937649ff", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/c28960725208d7d1b7e695b2473330d1e98dad49%3A6729a00b7b545704b361c17d33b212f0ce27c99fb8b9e32349ef01e6870ff1c5", "method": "GET" }, "response": { @@ -22,13 +22,13 @@ "Content-Type": "application/json" } }, - "uuid": "dd2dc344-6d47-40de-84a5-9d46fcaefc7c" + "uuid": "5e4a92e6-bc06-4d02-919b-6ab2365d3b8c" }, { - "id": "adf926bf-15e7-47e0-b296-07a9118f1e89", - "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d84729bef77c094843aa264fd0da8c06df9b3af186124a947c5d5aecdc9ada6906f995c660e0dc847abb74e4a5001eb2da8fda94", + "id": "7311408c-94d8-4d16-8eae-0f9b6acaa2c2", + "name": "api_v1_actions_workspaces_c76e0537d0614abb0027f7c992656b964922506f_execution_afm_execute_result_d6037789e2330ee544e2317176253b04e4ca2658e73d0c7583535f81c805aa5359696c9e31de8fc476d99163bdd4d0863cf33847", "request": { - "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d84729bef77c094843aa264fd0da8c06df9b3af1%3A86124a947c5d5aecdc9ada6906f995c660e0dc847abb74e4a5001eb2da8fda94?offset=0%2C0&limit=100%2C1000", + "url": "/api/v1/actions/workspaces/c76e0537d0614abb0027f7c992656b964922506f/execution/afm/execute/result/d6037789e2330ee544e2317176253b04e4ca2658%3Ae73d0c7583535f81c805aa5359696c9e31de8fc476d99163bdd4d0863cf33847?offset=0%2C0&limit=100%2C1000", "method": "GET" }, "response": { @@ -46,17 +46,17 @@ "Content-Type": "application/json" } }, - "uuid": "adf926bf-15e7-47e0-b296-07a9118f1e89" + "uuid": "7311408c-94d8-4d16-8eae-0f9b6acaa2c2" }, { - "id": "844d0526-9cf1-4208-9322-17077abee698", + "id": "ffb93d43-916c-4404-8a4d-51e60433d1fe", "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\"]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"a_f_owner.department_id\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_amount_bop\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}}}],\"attributes\":[{\"label\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"a_f_owner.department_id\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"a_attr.f_stage.stagename\"],\"sorting\":[{\"attribute\":{\"attributeIdentifier\":\"a_attr.f_stage.stagename\",\"sortType\":\"DEFAULT\"}}]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"measureGroup\"]}],\"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\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"a_attr.f_stage.stagename\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -64,7 +64,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_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_1\"}],\"links\":{\"executionResult\":\"e135e1efdd29479009cfbafb6ff90a156f69ce6e:2a19e93fa2370c2a7a00502530f7e54645832f24c0099b76dffd1db2937649ff\"}}}", + "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\":\"d6037789e2330ee544e2317176253b04e4ca2658:e73d0c7583535f81c805aa5359696c9e31de8fc476d99163bdd4d0863cf33847\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -77,17 +77,17 @@ "Content-Type": "application/json" } }, - "uuid": "844d0526-9cf1-4208-9322-17077abee698" + "uuid": "ffb93d43-916c-4404-8a4d-51e60433d1fe" }, { - "id": "e361fbc8-d9ac-4024-b809-b06d05b9e05a", + "id": "afa188dd-d226-4002-afa8-30aaa1f87052", "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\":[\"a_attr.f_stage.stagename\"],\"sorting\":[{\"attribute\":{\"attributeIdentifier\":\"a_attr.f_stage.stagename\",\"sortType\":\"DEFAULT\"}}]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"measureGroup\"]}],\"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\":\"attr.f_stage.stagename\",\"type\":\"label\"}},\"localIdentifier\":\"a_attr.f_stage.stagename\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", + "equalToJson": "{\"resultSpec\":{\"dimensions\":[{\"localIdentifier\":\"dim_0\",\"itemIdentifiers\":[\"measureGroup\"]},{\"localIdentifier\":\"dim_1\",\"itemIdentifiers\":[\"a_f_owner.department_id\"]}],\"totals\":[]},\"execution\":{\"measures\":[{\"localIdentifier\":\"m_amount_bop\",\"definition\":{\"measure\":{\"item\":{\"identifier\":{\"id\":\"amount_bop\",\"type\":\"metric\"}}}}}],\"attributes\":[{\"label\":{\"identifier\":{\"id\":\"f_owner.department_id\",\"type\":\"label\"}},\"localIdentifier\":\"a_f_owner.department_id\"}],\"filters\":[],\"auxMeasures\":[]},\"settings\":{}}", "ignoreArrayOrder": false, "ignoreExtraElements": false } @@ -95,7 +95,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\":\"d84729bef77c094843aa264fd0da8c06df9b3af1:86124a947c5d5aecdc9ada6906f995c660e0dc847abb74e4a5001eb2da8fda94\"}}}", + "body": "{\"executionResponse\":{\"dimensions\":[{\"headers\":[{\"measureGroupHeaders\":[{\"localIdentifier\":\"m_amount_bop\",\"format\":\"$#,##0.00\",\"name\":\"Amount [BOP]\"}]}],\"localIdentifier\":\"dim_0\"},{\"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\"}}],\"localIdentifier\":\"dim_1\"}],\"links\":{\"executionResult\":\"c28960725208d7d1b7e695b2473330d1e98dad49:6729a00b7b545704b361c17d33b212f0ce27c99fb8b9e32349ef01e6870ff1c5\"}}}", "headers": { "X-Content-Type-Options": "nosniff", "Pragma": "no-cache", @@ -108,10 +108,10 @@ "Content-Type": "application/json" } }, - "uuid": "e361fbc8-d9ac-4024-b809-b06d05b9e05a" + "uuid": "afa188dd-d226-4002-afa8-30aaa1f87052" }, { - "id": "c335dd78-f29e-4ec1-a4bf-dd86a5d0601f", + "id": "388494c3-f99e-44f7-8517-0ba112b5d211", "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", @@ -119,7 +119,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", @@ -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" } ] } From 57a65a1663e92b0b0b92498bb5a19484bb2b233d Mon Sep 17 00:00:00 2001 From: git-action Date: Thu, 12 Dec 2024 09:47:25 +0000 Subject: [PATCH 03/54] chore: bump versions to 10.18.0-alpha.0 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index cca6411085c..0118b7dff68 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index ba593a47256..311b6ea5b66 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index c937e5a0bb3..702dd32db0d 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index c9b1a47f8a8..e24bfbd831d 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 71689b36c3a..388324cf673 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 4cd0fa583cf..8bf8e9164ec 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index ad0d6ba7582..a6d016c44a4 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 8c3f6cf8d85..ade3f5259a7 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 70b4fbca456..309cd8737cc 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 511e735f15d..7ca19be90fd 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index a48e45fbc49..abb6a7f17e4 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index edf0bbab42b..3c8397392bf 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index a35f1407696..a61f655397a 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index bf55c7d6616..be724ad0da4 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index f413d534d8b..0bef2c2d264 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 443bd8f263b..7c138be0cc0 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 785a7332d13..b6f7de6464f 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 0c70221f532..702a4fc8fba 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 4d1c4a9c569..df78a2e8fc4 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 22dfad914ff..ae113a9e590 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index bb8f4a04c70..cd948eda062 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index e5a0ea18a54..dd0a6896c37 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 633732e0bcb..fce1ab5cf98 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index a90e875ab53..ef9e8553455 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 8bdef4cb1a1..e5cca984e58 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 450924ed61e..c9e63ae0c25 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 1ea13e87c5d..e1f83c6d5ae 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 1c13acd0cc7..e92a467f403 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 5deedbf86cc..90fde44bf27 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index c5f822bfac7..19f218a6e56 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 8e0c2b9fd07..2962f5e4727 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 9f7538b832b..0a1635df184 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 21d361caf69..21b4127cd8f 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 624ba70f2d0..ed2255b00b4 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 1aa355655d6..ccc08c731c2 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 522c13e3bd2..976fe1a2ebf 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index cdf483d301d..fcfe7fc9d41 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index eabe112a431..b03ac9032e5 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 61517d24678..e23dd37fd32 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index d3775ed069d..5a654709014 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 303df171f72..ea53ae4db9c 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 7277cf758ef..7cb0ab30bcd 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index b05887537fe..c31e806a9d8 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 77343d98404..7447da73ada 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.17.0-alpha.25", + "version": "10.18.0-alpha.0", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 6069a931b1dae4c0c3440415b33977a6203c90a0 Mon Sep 17 00:00:00 2001 From: git-action Date: Thu, 12 Dec 2024 10:32:10 +0000 Subject: [PATCH 04/54] chore: bump versions to 10.18.0-alpha.1 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 0118b7dff68..be3e9ea04a5 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 311b6ea5b66..87fade8bcce 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 702dd32db0d..52aa1b6c7db 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index e24bfbd831d..419cf40dc96 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 388324cf673..e8e81e49068 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 8bf8e9164ec..c5ffe4d306f 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index a6d016c44a4..1f106da63d3 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index ade3f5259a7..7cb74ec2c1b 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 309cd8737cc..4166b91b5f6 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 7ca19be90fd..48b4bf33c0a 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index abb6a7f17e4..11d4d953f35 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 3c8397392bf..2835dddac28 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index a61f655397a..087f41cf844 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index be724ad0da4..13f6e55caa2 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 0bef2c2d264..d547399bbc6 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 7c138be0cc0..09e4356cca5 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index b6f7de6464f..7e61fdcaa20 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 702a4fc8fba..4634e9cf0ad 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index df78a2e8fc4..63913545bb3 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index ae113a9e590..c4b96e34d51 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index cd948eda062..84decf6ff58 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index dd0a6896c37..e943d4033db 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index fce1ab5cf98..870e82c50b5 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index ef9e8553455..b158a53ca49 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index e5cca984e58..a82235f210c 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index c9e63ae0c25..564d47aa607 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index e1f83c6d5ae..8328f003cd0 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index e92a467f403..68849050e00 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 90fde44bf27..e53c603a5e7 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 19f218a6e56..bcd35524dfa 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 2962f5e4727..a8dc663e928 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 0a1635df184..636c9126265 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 21b4127cd8f..6a61359f28f 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index ed2255b00b4..994e1b65376 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index ccc08c731c2..c8f2e67ef04 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 976fe1a2ebf..42e5352899a 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index fcfe7fc9d41..fa35c7f8874 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index b03ac9032e5..62a41371f04 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index e23dd37fd32..0b770bb02e7 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 5a654709014..abeabb0d0f4 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index ea53ae4db9c..7b477fceed8 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 7cb0ab30bcd..5edbf729e45 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index c31e806a9d8..9b088fc9a3d 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 7447da73ada..75f33be08d9 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.0", + "version": "10.18.0-alpha.1", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 3cb40c10d265136ea828c617df494be5522086fb Mon Sep 17 00:00:00 2001 From: kandl Date: Thu, 12 Dec 2024 15:55:52 +0100 Subject: [PATCH 05/54] feat: notification panel Introduce new customizable notification panel component. risk: low JIRA: F1-976 --- .stylelintrc | 3 +- .../rush/browser-approved-packages.json | 32 ++- common/config/rush/pnpm-lock.yaml | 24 ++ .../api/sdk-backend-spi.api.md | 1 + .../src/organization/notifications/query.ts | 8 + .../organization/notificationsQuery.ts | 28 +- libs/sdk-model/api/sdk-model.api.md | 12 + libs/sdk-model/src/index.ts | 6 + libs/sdk-model/src/notifications/index.ts | 53 ++++ .../api/sdk-ui-dashboard.api.md | 7 +- .../initializeAutomationsHandler.ts | 38 +++ .../src/model/store/config/configSelectors.ts | 12 + .../sdk-ui-dashboard/src/model/store/index.ts | 1 + .../src/model/types/commonTypes.ts | 13 +- .../DefaultDashboardInsightWidget.tsx | 33 ++- .../styles/scss/dashboard.scss | 4 + libs/sdk-ui-ext/api/sdk-ui-ext.api.md | 144 ++++++++++ libs/sdk-ui-ext/package.json | 4 + libs/sdk-ui-ext/src/index.ts | 15 + .../src/internal/translations/en-US.json | 80 ++++++ .../OrganizationContext.tsx | 34 +++ .../useFetchOrganization.ts | 38 +++ .../Notification/AlertNotification.tsx | 118 ++++++++ .../Notification/DefaultNotification.scss | 134 +++++++++ .../Notification/DefaultNotification.tsx | 54 ++++ .../NotificationFiltersDetail.tsx | 74 +++++ .../NotificationFiltersDetailDialog.scss | 29 ++ .../NotificationFiltersDetailDialog.tsx | 57 ++++ .../NotificationTriggersDetail.tsx | 77 +++++ .../NotificationTriggersDetailDialog.scss | 72 +++++ .../NotificationTriggersDetailDialog.tsx | 62 +++++ .../DefaultNotificationsList.scss | 7 + .../DefaultNotificationsList.tsx | 86 ++++++ .../DefaultNotificationsListEmptyState.scss | 21 ++ .../DefaultNotificationsListEmptyState.tsx | 39 +++ .../DefaultNotificationsListErrorState.scss | 21 ++ .../DefaultNotificationsListErrorState.tsx | 30 ++ .../DefaultNotificationsPanel.scss | 18 ++ .../DefaultNotificationsPanel.tsx | 92 ++++++ .../DefaultNotificationsPanelHeader.scss | 28 ++ .../DefaultNotificationsPanelHeader.tsx | 98 +++++++ .../DefaultOpenNotificationsPanelButton.scss | 34 +++ .../DefaultOpenNotificationsPanelButton.tsx | 65 +++++ .../NotificationsPanel/NotificationsPanel.tsx | 262 ++++++++++++++++++ libs/sdk-ui-ext/src/notificationsPanel/bem.ts | 4 + .../components/DetailsDialog.scss | 51 ++++ .../components/DetailsDialog.tsx | 41 +++ .../components/Skeleton.scss | 25 ++ .../components/Skeleton.tsx | 26 ++ .../notificationsPanel/components/Tooltip.tsx | 14 + .../components/VirtualList.scss | 26 ++ .../components/VirtualList.tsx | 143 ++++++++++ .../data/NotificationsContext.tsx | 34 +++ .../data/attributeFilterNaming.ts | 22 ++ .../data/dateFilterNaming.ts | 43 +++ .../data/useFetchNotifications.ts | 81 ++++++ .../data/useNotificationFiltersDetail.tsx | 127 +++++++++ .../data/useNotifications.tsx | 134 +++++++++ .../localization/IntlWrapper.tsx | 59 ++++ .../notificationsPanel/notificationPanel.scss | 19 ++ .../src/notificationsPanel/types.ts | 6 + libs/sdk-ui-ext/styles/scss/main.scss | 1 + libs/sdk-ui-kit/api/sdk-ui-kit.api.md | 39 ++- libs/sdk-ui-kit/src/@ui/@types/icon.ts | 2 +- .../sdk-ui-kit/src/@ui/UiButton/UiButton.scss | 23 +- libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx | 13 +- libs/sdk-ui-kit/src/@ui/UiIcon/UiIcon.tsx | 4 +- libs/sdk-ui-kit/src/@ui/UiIcon/icons.tsx | 18 ++ libs/sdk-ui-kit/src/Header/Header.tsx | 2 + libs/sdk-ui-kit/src/Header/typings.ts | 1 + libs/sdk-ui-kit/src/Overlay/index.ts | 2 + libs/sdk-ui-kit/src/Overlay/typings.ts | 2 +- libs/sdk-ui-kit/src/Overlay/utils.ts | 79 ++++++ libs/sdk-ui-kit/src/index.ts | 2 +- 74 files changed, 3066 insertions(+), 45 deletions(-) create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/OrganizationContext.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/Notification/DefaultNotification.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetailDialog.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListEmptyState.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsListErrorState.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultOpenNotificationsPanelButton.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/bem.ts create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/DetailsDialog.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/Tooltip.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/attributeFilterNaming.ts create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/dateFilterNaming.ts create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/localization/IntlWrapper.tsx create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss create mode 100644 libs/sdk-ui-ext/src/notificationsPanel/types.ts create mode 100644 libs/sdk-ui-kit/src/Overlay/utils.ts 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/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..c5c2f430459 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 @@ -2741,6 +2747,9 @@ importers: react-lines-ellipsis: specifier: ^0.15.0 version: 0.15.4(react-dom@18.2.0)(react@18.2.0) + react-loading-skeleton: + specifier: ^3.4.0 + version: 3.4.0(react@18.2.0) react-measure: specifier: ^2.5.2 version: 2.5.2(react-dom@18.2.0)(react@18.2.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/libs/sdk-backend-spi/api/sdk-backend-spi.api.md b/libs/sdk-backend-spi/api/sdk-backend-spi.api.md index b001d1c9478..c4c57d47f3c 100644 --- a/libs/sdk-backend-spi/api/sdk-backend-spi.api.md +++ b/libs/sdk-backend-spi/api/sdk-backend-spi.api.md @@ -893,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-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-model/api/sdk-model.api.md b/libs/sdk-model/api/sdk-model.api.md index 9f3c32d70fe..09349a9e34f 100644 --- a/libs/sdk-model/api/sdk-model.api.md +++ b/libs/sdk-model/api/sdk-model.api.md @@ -3001,6 +3001,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; @@ -3564,6 +3567,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 +3641,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 +3656,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; diff --git a/libs/sdk-model/src/index.ts b/libs/sdk-model/src/index.ts index fd5fd2947e2..0d153f6e4bb 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, 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..7de4447b28b 100644 --- a/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md +++ b/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md @@ -1553,6 +1553,8 @@ export interface DashboardConfig { // @internal allowCreateInsightRequest?: boolean; allowUnfinishedFeatures?: boolean; + // @beta + automationId?: string; colorPalette?: IColorPalette; dateFilterConfig?: IDateFilterConfig; disableCrossFiltering?: boolean; @@ -7029,7 +7031,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 +7306,9 @@ export const selectAttributeFilterDisplayFormsMap: DashboardSelector; +// @beta +export const selectAutomationId: DashboardSelector; + // @alpha export const selectAutomationsError: DashboardSelector; 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..79e6b8234a1 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, @@ -25,6 +26,16 @@ import { selectAutomationsIsLoading, } from "../../store/automations/automationsSelectors.js"; import { selectCanManageWorkspace } from "../../store/permissions/permissionsSelectors.js"; +import { + filterObjRef, + IAttributeFilter, + IDateFilter, + isDateFilter, + isRelativeDateFilter, +} from "@gooddata/sdk-model"; +import { changeFilterContextSelectionHandler } from "../filterContext/changeFilterContextSelectionHandler.js"; +import { changeFilterContextSelection } from "../../commands/filters.js"; +import omit from "lodash/omit.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 || @@ -74,6 +86,32 @@ export function* initializeAutomationsHandler( 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; + const filtersWithObjRef = targetFilters + ?.filter((f) => { + const objRef = filterObjRef(f); + return !!objRef; + }) + .map((f) => { + if (isDateFilter(f)) { + if (isRelativeDateFilter(f)) { + return omit(f, "relativeDateFilter.dataSet"); + } + return omit(f, "absoluteDateFilter.dataSet"); + } + return f; + }) as (IAttributeFilter | IDateFilter)[]; + + if (targetWidget && filtersWithObjRef?.length) { + const cmd = changeFilterContextSelection(filtersWithObjRef, true, automationId); + yield call(changeFilterContextSelectionHandler, ctx, cmd); + } + } + yield put( batchActions([ automationsActions.setAutomationsInitialized(), 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..5771973bd18 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 { 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/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx b/libs/sdk-ui-dashboard/src/presentation/widget/widget/InsightWidget/DefaultDashboardInsightWidget.tsx index 530d32d3ed1..82d99c6537d 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, @@ -123,6 +135,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/styles/scss/dashboard.scss b/libs/sdk-ui-dashboard/styles/scss/dashboard.scss index 2115f59a363..b82f229c51b 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; 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..590e9a68a3c 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,131 @@ 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 { + // (undocumented) + backend?: IAnalyticalBackend; + // (undocumented) + locale?: ILocale; + // (undocumented) + onNotificationClick: (notification: INotification) => void; + // (undocumented) + workspace?: string; +} + +// @alpha (undocumented) +export type INotificationsPanelView = "all" | "unread"; + // @internal (undocumented) export const INSIGHT_WIDGET_SIZE_INFO_DEFAULT: IVisualizationDefaultSizeInfo; @@ -438,6 +569,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 +697,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 8328f003cd0..6c6333aecd1 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", @@ -82,6 +85,7 @@ "lru-cache": "^10.0.1", "react-intl": "^6.4.1", "react-lines-ellipsis": "^0.15.0", + "react-loading-skeleton": "^3.4.0", "react-measure": "^2.5.2", "react-select": "^5.7.3", "react-select-async-paginate": "^0.7.3", 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/en-US.json b/libs/sdk-ui-ext/src/internal/translations/en-US.json index c0f362ece49..a5adf882a17 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": "{count} 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/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..4ea8afcaaed --- /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], + ); +} 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..fe65906eb1b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx @@ -0,0 +1,118 @@ +// (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(() => { + onNotificationClick(notification); + }, [onNotificationClick, notification]); + + 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..8369d3e6d48 --- /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..91d182a83f0 --- /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 { Skeleton } from "../components/Skeleton.js"; +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..4240540a6a0 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx @@ -0,0 +1,77 @@ +// (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 }, + }), +]; + +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 ( + <> + { + e.stopPropagation(); + toggleTriggersDialog(); + }} + variant="tertiary" + size="small" + label={triggersTitle} + /> + {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..18c1b7e0800 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.scss @@ -0,0 +1,7 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-notifications-list { + overflow: hidden; + display: flex; + flex-direction: column; +} 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..48cf40ea1bf --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsList/DefaultNotificationsList.tsx @@ -0,0 +1,86 @@ +// (C) 2024 GoodData Corporation +import React 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; + + 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..73d01ad411a --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss @@ -0,0 +1,18 @@ +// (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: 15px; + + width: 370px; + max-height: 560px; + + overflow: hidden; +} 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..7f36080840c --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss @@ -0,0 +1,28 @@ +// (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: 28px; + + display: flex; + flex-direction: column; + align-items: stretch; + justify-content: flex-end; + } + + &__mark-all-as-read-button { + height: 28px; + 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..aa9d1f9c5f6 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx @@ -0,0 +1,262 @@ +// (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 { + workspace?: string; + backend?: IAnalyticalBackend; + locale?: ILocale; + onNotificationClick: (notification: INotification) => void; +} + +/** + * @alpha + */ +export function NotificationsPanel(props: INotificationsPanelProps) { + const { locale } = props; + + return ( + + + + + + + + ); +} + +/** + * @internal + */ +function NotificationsPanelController({ + OpenNotificationsPanelButton, + NotificationsPanel = DefaultNotificationsPanel, + NotificationsPanelHeader = DefaultNotificationsPanelHeader, + NotificationsList = DefaultNotificationsList, + NotificationsListEmptyState = DefaultNotificationsListEmptyState, + NotificationsListErrorState = DefaultNotificationsListErrorState, + Notification = DefaultNotification, + onNotificationClick, +}: 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 ( + <> + 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/Skeleton.scss b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss new file mode 100644 index 00000000000..b0d530e1b27 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss @@ -0,0 +1,25 @@ +// (C) 2024 GoodData Corporation + +@use "@gooddata/sdk-ui-kit/styles/scss/variables" as kit-variables; +@use "react-loading-skeleton/dist/skeleton.css"; + +.gd-ui-ext-skeleton { + height: 100%; + width: 100%; + display: flex; + flex-direction: column; + + &__item { + border-radius: 3px; + } + + .react-loading-skeleton { + --base-color: var(--gd-palette-complementary-2); + --highlight-color: var(--gd-palette-complementary-0); + } + + span { + line-height: 0; + font-size: 0; + } +} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx new file mode 100644 index 00000000000..c6650de53a6 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx @@ -0,0 +1,26 @@ +// (C) 2024 GoodData Corporation +import React, { useMemo } from "react"; +import ReactLoadingSkeleton from "react-loading-skeleton"; +import { bem } from "../bem.js"; + +const { b, e } = bem("gd-ui-ext-skeleton"); + +export interface ISkeletonProps { + itemHeight: number; + itemsCount?: number; + gap?: number; +} + +export function Skeleton({ itemsCount = 1, itemHeight, gap = 10 }: ISkeletonProps) { + const items = Array.from({ length: itemsCount }, (_, idx) => ( + + )); + + const style = useMemo(() => ({ gap }), [gap]); + + return ( +
+ {items} +
+ ); +} 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..1ccaa849e2b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss @@ -0,0 +1,26 @@ +// (C) 2024 GoodData Corporation + +.gd-ui-ext-virtual-list { + height: 100%; + width: 100%; + + &--hasScroll { + padding-right: 4px; + } + + &__scroll-container { + 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..9568ef2c06c --- /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 { useVirtualizer } from "@tanstack/react-virtual"; + +import { Skeleton } from "./Skeleton.js"; +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, + maxHeight = 500, + itemsGap, + skeletonItemsCount, + hasNextPage, + loadNextPage, + isLoading, + } = 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 height = Math.min( + itemsCount > 0 + ? (itemHeight + itemsGap) * itemsCount + itemsGap + : skeletonItemsCount * (itemHeight + itemsGap) + itemsGap, + maxHeight, + ); + + 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..b7a1dafd4ff --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx @@ -0,0 +1,34 @@ +// (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; +} + +export const NotificationsProvider: React.FC = ({ + children, + backend, + workspace, +}) => { + const notifications = useNotifications({ backend, workspace }); + + 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..784fbfcee78 --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts @@ -0,0 +1,81 @@ +// (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, 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"; +} + +/** + * @alpha + */ +export function useFetchNotifications({ workspace, readStatus }: 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 { 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], + ); + + const loadNextPage = useCallback(() => { + if (status === "success" && hasNextPage) { + setPage((x) => x + 1); + } + }, [status, hasNextPage]); + + return { + notifications, + status, + error, + hasNextPage, + loadNextPage, + totalNotificationsCount, + }; +} 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..a897fe03b4a --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx @@ -0,0 +1,127 @@ +// (C) 2024 GoodData Corporation +import { + areObjRefsEqual, + filterObjRef, + IAttributeFilter, + isAttributeFilter, + isDateFilter, + isPositiveAttributeFilter, + LocalIdRef, + IAlertNotification, + ObjRef, +} 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"; + +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; +} + +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 backend + .workspace(workspaceId) + .automations() + .getAutomation(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 labels = await backend + .workspace(workspaceId) + .attributes() + .getAttributeDisplayForms(filterDisplayFormsRefs); + + return { automation, labels }; + }, + }, + [notification.automationId, workspaceId], + ); + + const filtersInfo = useMemo(() => { + if (!automationPromise.result) { + return null; + } + const { automation, labels } = automationPromise.result; + + const alert = automation?.alert; + if (!alert) { + return []; + } + + return alert.execution.filters + .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..00ce7e93efc --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx @@ -0,0 +1,134 @@ +// (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; +} + +/** + * @alpha + */ +export function useNotifications({ workspace }: IUseNotificationsProps) { + const effectiveWorkspace = useWorkspaceStrict(workspace, "useNotifications"); + const { + notifications, + hasNextPage: notificationsHasNextPage, + error: notificationsError, + loadNextPage: notificationsLoadNextPage, + status: notificationsStatus, + } = useFetchNotifications({ + workspace: effectiveWorkspace, + }); + const { + error: unreadNotificationsError, + hasNextPage: unreadNotificationsHasNextPage, + loadNextPage: unreadNotificationsLoadNextPage, + notifications: unreadNotifications, + status: unreadNotificationsStatus, + totalNotificationsCount: unreadNotificationsCount, + } = useFetchNotifications({ + workspace: effectiveWorkspace, + readStatus: "unread", + }); + + 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(); + + setMarkedAsReadNotifications(notifications.map((notification) => notification.id) ?? []); + }, [ + organizationService, + organizationStatus, + notifications, + notificationsStatus, + setMarkedAsReadNotifications, + ]); + + 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..97ac21ef34b --- /dev/null +++ b/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss @@ -0,0 +1,19 @@ +// (C) 2024 GoodData Corporation + +@use "./components/DetailsDialog.scss"; +@use "./components/Skeleton.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-kit/api/sdk-ui-kit.api.md b/libs/sdk-ui-kit/api/sdk-ui-kit.api.md index 3a9bee78292..7814a84e4ca 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,8 @@ export interface IAppHeaderProps { // (undocumented) menuItemsGroups?: IHeaderMenuItem[][]; // (undocumented) + notificationsPanel?: React_2.ReactNode; + // (undocumented) onChatItemClick?: (e: React_2.MouseEvent) => void; // (undocumented) onHelpClick?: (isOpen: boolean) => void; @@ -1198,7 +1219,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 { @@ -3286,7 +3307,7 @@ export interface IOverlayProps { // (undocumented) alignPoints?: IAlignPoint[]; // (undocumented) - alignTo?: string | HTMLElement; + alignTo?: string | HTMLElement | null; // (undocumented) children?: React.ReactNode; // (undocumented) @@ -4476,6 +4497,9 @@ export const OverlayControllerProvider: React_2.FC(dateDatasets: T[], recommendedDate: T): Array; @@ -4855,10 +4879,12 @@ 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, }: UiButtonProps) => React_2.JSX.Element; // @internal (undocumented) export interface UiButtonProps { + // (undocumented) + buttonRef?: React_2.RefObject; // (undocumented) iconAfter?: IconType; // (undocumented) @@ -4870,7 +4896,7 @@ export interface UiButtonProps { // (undocumented) label: string; // (undocumented) - onClick?: () => void; + onClick?: (e: React_2.MouseEvent) => void; // (undocumented) size?: SizeSmall | SizeMedium | SizeLarge; // (undocumented) @@ -4887,7 +4913,7 @@ export interface UiIconProps { // (undocumented) color?: ThemeColor; // (undocumented) - label: string; + label?: string; // (undocumented) size?: number; // (undocumented) @@ -4974,6 +5000,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/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..dceaeb67e46 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,7 @@ export interface UiButtonProps { isDisabled?: boolean; isLoading?: boolean; tooltip?: React.ReactNode; - onClick?: () => void; + onClick?: (e: React.MouseEvent) => void; } const { b, e } = bem("gd-ui-kit-button"); @@ -34,6 +35,7 @@ const { b, e } = bem("gd-ui-kit-button"); * @internal */ export const UiButton = ({ + buttonRef, size = "medium", variant = "secondary", label, @@ -41,11 +43,18 @@ export const UiButton = ({ isLoading, iconBefore, iconAfter, + onClick, }: UiButtonProps) => { const iconPosition = iconBefore ? "left" : iconAfter ? "right" : undefined; return ( - + ))} + + ) : 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/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 { From 718da0507fef2abb13a38569f441fa2191404a53 Mon Sep 17 00:00:00 2001 From: git-action Date: Fri, 13 Dec 2024 14:07:43 +0000 Subject: [PATCH 09/54] chore: bump versions to 10.18.0-alpha.3 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index d1cab38c286..fd47f0c3d84 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index bcc6fef1422..d2d03cf37c3 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 3fa5cc7dce2..c894d9e057b 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 5620643d366..adf918fba47 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index aa968711366..2d864449efd 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 22131af9578..3e4618b0ebf 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index c83bfa610a6..b9e8cb77a7f 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index ba5022c3948..cfeb7958b79 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index f5d9e130e74..205d065d72a 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 9b525fe4563..bbc575e7767 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 20fd7e7ec88..3031d87c755 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index ed841e39480..c5056c35abb 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index aac6ae0d277..7228331c6b1 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index bf06b9d2be6..863cd7d3d31 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index fbdf3f3657e..10b6f9cfaa3 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 20578fc80cf..95bd095f9e2 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 4adf0b46f9c..7aec533af96 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index a5c1a02ab9a..57c5b2b05d3 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index c011b922066..fc87222e3a9 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 6b7a99d9fa4..e88dbb0f2f5 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index ba406c38e18..d5a49ac41c0 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 99ea5ef5380..0679c9b886d 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 56e392389ac..0c8c97a4d26 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index c91509bc388..759d2bea2e0 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 0248575508e..7eb0732f77c 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index e7ff61e67ed..89465c6ef92 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 5a231f56bb8..6b278b2802b 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 8c317655798..48caf045365 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index a097707f725..197700c89bd 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 3a26f1b69d9..a45b320dd6e 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 9ff6bae986d..29d3f629093 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 981c5bdb71f..70892a26591 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 8f81df92a6e..1e4ecb12069 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index a6d8d328b77..48bbd396b64 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 6cba4f7f466..4375ee0b525 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index bd543f3456c..9d94fc75e5e 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index f208d34d70d..5630ee67c52 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 772fca4718c..7077acbedb7 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 037e03dd3cc..66c8f7bb114 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 60e62adf861..46a397bbd7d 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 022aee40607..e361fba377a 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index b245d45551b..a9793f18a04 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index c5e059d9c13..52e52ea62f2 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index ab7a63b8b36..8e92154eb14 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.2", + "version": "10.18.0-alpha.3", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 391bd43df43b047932be03c733159d700377c296 Mon Sep 17 00:00:00 2001 From: huyenthanh09 Date: Thu, 12 Dec 2024 11:05:41 +0700 Subject: [PATCH 10/54] ci: input variables for e2e checklist JIRA: QA-23600 risk: nonprod --- .../workflows/checklist-cypress-ui-test.yaml | 102 ++++++++++++++++-- .../checklist-integrated-staging.yaml | 17 ++- .../rw-rush-build-e2e-tests-integrated.yml | 1 + .../ci/run_cypress_integrated_tests.sh | 2 +- 4 files changed, 109 insertions(+), 13 deletions(-) diff --git a/.github/workflows/checklist-cypress-ui-test.yaml b/.github/workflows/checklist-cypress-ui-test.yaml index dc602a74567..9ce1ce26422 100644 --- a/.github/workflows/checklist-cypress-ui-test.yaml +++ b/.github/workflows/checklist-cypress-ui-test.yaml @@ -1,6 +1,6 @@ # (C) 2024 GoodData Corporation -name: Test ~ run checklist e2e tests with ${{ inputs.CYPRESS_TEST_TAGS }} +name: Test ~ run checklist e2e tests on: workflow_dispatch: inputs: @@ -20,7 +20,7 @@ on: CYPRESS_TEST_TAGS: description: 'Test tags should be run. Tip: can get them inside each spec file' required: true - default: 'checklist_integrated_tiger, checklist_integrated_tiger_export' + default: 'checklist_integrated_tiger,checklist_integrated_tiger_export' type: string FILTER: type: string @@ -35,6 +35,7 @@ on: TEST_BACKEND: default: 'https://checklist.staging.stg11.panther.intgdc.com' required: true + type: string TIGER_DATASOURCES_NAME: default: 'vertica_staging-goodsales' required: true @@ -42,15 +43,77 @@ on: CYPRESS_TEST_TAGS: required: true type: string + FILTER: + required: false + description: "List of spec files to filter" + type: string jobs: - e2e-checklist: - permissions: - id-token: write - contents: read - secrets: inherit - timeout-minutes: 60 + warm-up-cache: + runs-on: + group: infra1-runners-arc + labels: runners-cxa-xlarge + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.GIT_REVISION }} + fetch-depth: 2 + - name: Git config user + uses: snow-actions/git-config-user@v1.0.0 + with: + name: git-action + email: git-action@gooddata.com + - name: Warmup rush + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: ./.github/actions/rush/warm-up-rush + build: + needs: [ warm-up-cache ] + runs-on: + group: infra1-runners-arc + labels: runners-rxa-xlarge steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.GIT_REVISION }} + fetch-depth: 2 + - name: Git config user + uses: snow-actions/git-config-user@v1.0.0 + with: + name: git-action + email: git-action@gooddata.com + - name: Debug + run: git log -1 + - name: Setup rush + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: ./.github/actions/rush/set-up-rush + - name: Rush build + run: node common/scripts/install-run-rush.js build --to @gooddata/sdk-ui-tests-e2e + e2e: + needs: [ warm-up-cache,build ] + runs-on: + group: infra1-runners-arc + labels: runners-rxa-xlarge + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.GIT_REVISION }} + fetch-depth: 2 + - name: Git config user + uses: snow-actions/git-config-user@v1.0.0 + with: + name: git-action + email: git-action@gooddata.com + - name: Setup rush + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: ./.github/actions/rush/set-up-rush + - name: Rush build + run: | + node common/scripts/install-run-rush.js build --to @gooddata/sdk-ui-tests-e2e + - name: Rush generate dynamic files related to build + run: node common/scripts/install-run-rush.js build-generate-version - name: Get vault secrets uses: hashicorp/vault-action@v3 id: secrets @@ -61,5 +124,24 @@ jobs: role: front-end secrets: |- secret/data/v3/dev/panther/qa-org-bootstrap-token token | TIGER_API_TOKEN ; - - name: e2e integrated tests - uses: ./.github/workflows/rw-rush-build-e2e-tests-integrated.yml + - name: Run e2e tests + run: | + export TEST_BACKEND=${{ inputs.TEST_BACKEND }} + export TIGER_DATASOURCES_NAME=${{ inputs.TIGER_DATASOURCES_NAME }} + export EXECUTOR_NUMBER=$GH_RUN_ID + export CYPRESS_TEST_TAGS=${{ inputs.CYPRESS_TEST_TAGS }} + if [ -n "$USER_FILTER" ]; then + export FILTER=$USER_FILTER + fi + echo "Running with FILTER=$FILTER" + ./common/scripts/ci/run_cypress_integrated_tests.sh + env: + GH_RUN_ID: ${{ github.run_id }} + USER_FILTER: ${{ inputs.FILTER }} + - name: Archive the cypress test artifacts + uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: cypress-test-artifacts + path: | + libs/sdk-ui-tests-e2e/cypress/videos/**/*.mp4 diff --git a/.github/workflows/checklist-integrated-staging.yaml b/.github/workflows/checklist-integrated-staging.yaml index 7b936d4c41d..430bd667435 100644 --- a/.github/workflows/checklist-integrated-staging.yaml +++ b/.github/workflows/checklist-integrated-staging.yaml @@ -2,6 +2,8 @@ name: Checklist ~ run integrated e2e tests on: + schedule: + - cron: '6 8 * * *' workflow_dispatch: inputs: run-cypress-sdk: @@ -14,6 +16,11 @@ on: required: false default: true type: boolean + test-branch: + description: 'Test branch to run tests' + required: false + default: master + type: string jobs: setup-stage: name: Setup env variables @@ -48,6 +55,9 @@ jobs: if: ${{ needs.setup-stage.outputs.run-cypress-sdk == 'true'}} with: CYPRESS_TEST_TAGS: 'checklist_integrated_tiger' + GIT_REVISION: ${{ inputs.GIT_REVISION }} + TEST_BACKEND: 'https://checklist.staging.stg11.panther.intgdc.com' + TIGER_DATASOURCES_NAME: 'vertica_staging-goodsales' checklist-export: name: Cypress SDK Export Test permissions: @@ -55,7 +65,10 @@ jobs: pages: write id-token: write uses: ./.github/workflows/checklist-cypress-ui-test.yaml - needs: [ setup-stage ] - if: ${{ needs.setup-stage.outputs.run-export == 'true'}} + needs: [ setup-stage, checklist-SDK ] + if: ${{ !cancelled() && (needs.setup-stage.outputs.run-export == 'true') }} with: CYPRESS_TEST_TAGS: 'checklist_integrated_tiger_export' + GIT_REVISION: ${{ inputs.GIT_REVISION }} + TEST_BACKEND: 'https://checklist.staging.stg11.panther.intgdc.com' + TIGER_DATASOURCES_NAME: 'vertica_staging-goodsales' diff --git a/.github/workflows/rw-rush-build-e2e-tests-integrated.yml b/.github/workflows/rw-rush-build-e2e-tests-integrated.yml index a21c2c50c6b..d3dca2ed948 100644 --- a/.github/workflows/rw-rush-build-e2e-tests-integrated.yml +++ b/.github/workflows/rw-rush-build-e2e-tests-integrated.yml @@ -83,6 +83,7 @@ jobs: export TEST_BACKEND=https://staging-automation.dev-latest.stg11.panther.intgdc.com export TIGER_DATASOURCES_NAME=pg_staging-goodsales export EXECUTOR_NUMBER=$GH_RUN_ID + export CYPRESS_TEST_TAGS=post-merge_integrated_tiger if [ -n "$USER_FILTER" ]; then export FILTER=$USER_FILTER fi diff --git a/common/scripts/ci/run_cypress_integrated_tests.sh b/common/scripts/ci/run_cypress_integrated_tests.sh index 09eaa453fa2..9c535e1aec9 100755 --- a/common/scripts/ci/run_cypress_integrated_tests.sh +++ b/common/scripts/ci/run_cypress_integrated_tests.sh @@ -16,7 +16,7 @@ export TEST_BACKEND_NO_PREFIX=$(sed <<< $TEST_BACKEND -E "s#^https?:\/\/##") export HOST=${TEST_BACKEND} export TEST_BACKEND=${TEST_BACKEND:-} -export CYPRESS_TEST_TAGS=post-merge_integrated_tiger +export CYPRESS_TEST_TAGS=${CYPRESS_TEST_TAGS:-} export FIXTURE_TYPE=goodsales export FILTER=${FILTER:-} export TIGER_API_TOKEN=${TIGER_API_TOKEN:?} From 905199f75548405484c713f150059a64c62e35d7 Mon Sep 17 00:00:00 2001 From: kandl Date: Mon, 16 Dec 2024 10:05:06 +0100 Subject: [PATCH 11/54] fix: backstop Update reference screenshots for UiButton. risk: low JIRA: F1-976 --- ...l-featured_button_0_document_0_desktop.png | Bin 44335 -> 44889 bytes ...UiButton_-_themed_0_document_0_desktop.png | Bin 63736 -> 64572 bytes 2 files changed, 0 insertions(+), 0 deletions(-) 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 e28e7ffcdcf15290a78d56ded2a4425d10eeac04..0f0ff51645c56a2c68f577472aad8857da5bce9d 100644 GIT binary patch literal 44889 zcmeFZcT`hd_bwVx@D)K+q)1hYN=KwhRiuf4l+Z(!PUwVQEP#S^0qMO4g0ut@ii&{r z8bUFk(z|pBgxrnq_m1zozkA2I_cz8F@<&o$Rt^Lgeo_uFS$sx(y0 zR3H$DMqTZ(E(mlUXr2T8MG1VN(eyOH7nzr?>LU=MpLH1ox(QN${7~O7a}Dnwq`%ip z+B&F6|iv=EaH*oy=6=O3#-2)`D8MQyQQQ2GxU2jIFYE&WXQCK8$4>z`|TQ3BL zKhx1aPk-eh?21{u;KjEWpJ(x;&7Yip;C`z1==QC-^9y@HvV^-{Ejc&jFG$Y?%`9ea z8d0~2oZT1*)bC(W%krlMDq$!4yP+QT_jee#;@=I$Yd8OH+`M?@??(Ljzy5Bhk^kKf zh?|W3@4qC1{ugw!W+&->yZpDLb62r$C0~^xSi}V;b4L(oi~Ii4TTqC1_)6T!8q7VS zw8HV3547NAU&-dZU!If6NonOx6=Jofz%8ruc^8`49?XKRNlj6CD{%1>Y8+k z(NCZFNK?*#!1v$iv}TI1g3;NhXIRX@7rW2ZG&Co!Q-3q!w7Nl-gAj6GJ(Vu#-JrA& z>rST>KTOyEka5d5s%;GxAUJqk*BG2NEX&*7bNkF>M7No&XnM0+6LX9vEV_LSre!iN zGIvRJF5RbE<$KH5HCVrtEV(;XlZkS+OR|*h_yNnRCI$v)*@TRMkdqR-GA8LSgGjoIS+jEnL>E+(Ko-qG3?F994e9h@E zkyw(XVDdHgo;YxDN9E zzZzdA#p&$Ss&eIaG}K!qCurKZ3&0b`9a~(;}X4A zJw=Y2tmn|kl3UzxB}Pid5E7+>&Bf2oFJx~ z^2R@gH0VQ`jeZ*1j63);Dte8^b3-6YLxvLI)iJ25k7Kr}#f>x=&{L?)QWDN?Xf1R6 zvvlZ3(_2ae)yCGG{VPk&4x@u9>liVgZNKEFtnjSOmJ)XCLjwaGQ8rt}TI^MQQ?UBx>7$K6zBDOBDD1M7`fD3S9J|8Yh)+0saPc_&4(-t- z(ya_SwuYrA%m?}~w>0VBHzYZ;ebr?{lymYtK6U~xJ zp8Whs?$$J>AoE5D@C4B8eOBh5)y|Ioikdph^WBOiab!*IQn^Ym-emLbb#dGiyVIFG z_<>tcVGTF5P%3}#tDt(i!g!G(|G5W~ta9}-7j|FZH$zK*Dn-xjHOzY!EoIiKI4y1* zOm#pd;0qA%JYC()^!r}u^76RSp~X#D1$OSDP5m*E7RyT2C1RbF*+tjCi3>g-@XDQf z$>eK%O3Ja1Qi36lA)r2A6qe1S4udNn2io9?78fA7lM&Dbu z%C?F)2LEH*nXsgvO#VohBMPdDUsW8P%_ad2`9n*q$AxJLBY?w-~UeNJF9 z?3;j}@fh=V!%ULxP)qr&spbgT{moXq^^l}WQI~V=QV-W~9gfk!rzbptE~Xw`{0WYe zzx<8k-gC8pBGFv9ap%PnvV*np=L*N2zNMDSPa1{OaX;^Y)T73*9U)dsqCqh=#U*#d zZu7$GNqfnjnwV!}52b5pIe1CV!Z|g;kA4BWO4#^1NjsIWwE zo7j4+E$Zn?Wuj=7LGU1xmO};B<^s#!{M9nTsq~HVi^@~PE9WW86>pZ(?r-4mzNbbo zjAr8Xw~zOdWHwzhD#QpUqSQ(Z(aL>!@sIN2W!X{btB-(HMza2S6LMp`^0V|SeNhjW z*3CPEEN-o}U{l{FxZqSAq=@!BdAgMAyTTTlPS2X!i=FN!{=X~>QrIsq9W}sr>+?z( z<~uhcdSND5^z+0iyM!q_9mw6ubtCxq>+oXxlBN0XFcrUb=9OyrH>k{>3}q(wL2op@ z5wYB9Jt=hLtYH)NeO8nN9Oo=@9Hs!GP~j zNFo$$k6(ZFxDeKL`?-|(cN-j<>oXF1RcX?%uB^=lWJtYrcgA+4B)ZwtSTJC3R`HQd zB@7!`*DO>xK)bWjDBAj{qijkzx5{M_t+$vdo)6s?Zbz8K-jI8ef!v7aRxZ$KZrO*5 zi;J(u)U${^cSqgdR{Q8NJBbK;nBu-LT;$zyKX*!XclS)z%BPx(@gXvtFd=R6Ga^-4LvW0O)pSUK}a63*y75kv* zK$V(;GeVSY4EPQFvpMXg$a5wkQn}8T8VPYP20X^3YiPO*NBV7?JMJ=rcd{XD?C0G3 zKJc#QvidKWb4q79P1fDYt2X#aCCA_ zuDoi$&!{mq1Ncc*r4&WrtLYzCK}ke!-^vg)2HCbBC|`<`BC4JGsU&g(}t=1a(1mh|j zntl&An)oe$*K(F&;pbz@C!yCF)Dx}L=s64>XFlsfNL@Y09|M1k`Uj2}Kx6||BG+dJ zI0{lN0+k9>sGS+Z{N-GOx4dvDY?gz7xwDi3Zcq{Miw?TTAi|2r%o}d?OFMGtMdAa9 z$hV@PR0uGi`Ym*dpO%0RQs?T ztdm=P|BJP{ZXxRMPO57Al;&oaeAPjbC^iJ6}xr6 zN3N@&O!7-qBSm4_Q7XNzMQ)G3=zd}Z7A4xb=f&j}=#4sBGN6ZKFpl>Q7k1461X4_V zlJh{RMNL29{&PpvN2_m)Z~20qI;+s_U9&YJA{VxE7mXeqkBRb)&#u|Uj-CX|C zs&?we6;BAPPf!i_E0L3CORCTH!nwz`ny<>8S?FD~T4uk_*YV%E5B4{9v_kBrgb74gG1*Capc{|&ngbBBH>0Qc zC%!%7R!{i&E==2yvB8IwsblB+iY&LL_#sWpZTbbfZ&|-YFj*mt4pe0otxv2a zPO%)@)rRrwA!jEl4U~!U zz-$oQLR~y_tN$+c597A1RRc#y)vpde`U9sy?!`4G;E&!#5hr_&wK5MG{{lTly1y|6 z&H)2Kr3F)p(;0}{{i%Avy9cVV`z>i;Z+VfD{2|_R>KYs3ut8gaaY>k!MG-f~=BT?- zqeNIpDF`Ms`rJ}#?78gdt5gb{AcZw!?A84|oO}ixvwIkUMe^w*kY&wkR8!Ows>jq2 z!?}AHHcLellvVBRcWecfGSgs@@#kkh{JEOUdp+S*jEU6OO4~@H(_buhsB<6s@7uRr zkLh-BO|rng%&f&9uD1=>u%tJe%|Y z%NZa3OH6#$?x8S+R$oyhaUO{CgY%`m82UDdaijeel|a9u4)J z5+Jx#8_qB#r?~fRotiTr-)guyfJZ{LG?;!r^aWv>=vqcZu5uOd;RDqq@tHvZujs$ zU?a@Z7e^CPKSTHztFzdKMbZsdaYIk*NS?g;kKb0mia}RP!Pvcn6AWcm()V0@q+{{d zFv{C`#FzjV69f{Xo6CvPw7>^(=WY2}Fej9E(h{z}>k#_J6ctV@S&g8hWID(^N-X>_ zDS3tiqaM%2hEm^T&Hx+fnw1~#G(QMxdn7J<+4P|Z4vC>XYPi6 z9kkdNS4)iWcacLl&c`tYlyT->Wyh%aucv3u>!;)M0W4W!sr_PF#=X=ml3!tLv}=|} z-LcF(M%w;8V7^8OKGS$4IV+jBsva_6aw~@0mlUR@J_v#VZH)I9lIpa*A(d z3+*kVAH^-u!uYZ5fo=C?IU>mxDrqw4V^n;ONhjraSlm=49MMp??xRAe?t~1FSQ|o4 zUWDmp#=h?0>2j)fTG+kTd^DzV=6oy?ZX@q_lb)k|*$c_+evO0B`%9lyl&P0bQhO$$ z1Kvi!GF5@Z9c|czMqViS8Uh(%P40whI+!J{F)Uwd)7$%TsuEoO?ToPTo_$uO+we7l z>?;t^b~z;nFNx3#Koz!N18G$et#aNjN@4+PI6>d&8yz0CQIDN|9U8Xs0dDt%H|;iD zh9TDDxYZwU9#4qXB5F|sm|fX0GR26t`~lj%l{C>-SN5wi#xhH^s6cJN2nJvZFrF3r zQZ`k$f&p6LIQB5KuqPn5Ra`Q%&VNcPc)plL9M&rho#IL;4GHS3st?AopSccq8KUK( zGDY=VW6Lero+#F9ZAHU(w$e^Zcql5_ZOPKH5xG8I$q^LU?kMux-30{MQKptNUBKCl zczQd2H&MN%#C+_TmST7)E-Z;`=42Xb*fkmlPh6L|z(dh0sJKQ{ zu=0zQLA@!>4dG-22zjrj`GTC)CgUO^p>fIxwJ0RNIe(^vKS)| z$HOxE0GiTfZ>*yanv^MtgX({dmo1WFGdUtWpr2dhm6HR%P!!4AGFWyjOPAV^l{-1C zWi~J?{r+%*oRax$gBnOany)btbNh(F!yr}2xdU~WtzQ~9N&ci?nI@g7!$q=_4mNJ$(GD%zJq1&6jz)@B#0W0a9ySTWjO-s~7 z&1^Y?Ii$-o)%Qt}yu3~u>&YL+;HXu)jxNya@LF}E<1q}e=S`2eZ~?tamt@z*#I-{tEZ zr3fc;`wKmQMJm>{Xw{Q8eWS+4zWvpay>&p`;aHcypO8LFVNms+^>UXr*s^a$eo|(a z@@mn=jiX%igP>GjyeZxARt%p@h$nK`aD!L`w12t82_E$Xe+1-kF zyJ9g4q29tW7qkS=+(Ed%d)3qBQG^~4-%KHX#0|JR?PVg|aGOrDZC1-4L-h2%4qi#s z%whVq@r?Gv88{w29JR@cliPXCoa4{ApUa}S}{G))q}Sxw3?;%W?`4H zV9T3+R_%P1e(N!GW8e2?Q1yYqKy(=(#=ePaJ*>Lisp3rh(zCE!<6j#%Ebp%JmJhiw z43&vpk+CoG4Ok?L9~EHevNI$sw%k=NaPlK~)XF>wI1f^HfN4c#f4FC)n!!alMHWoz zkGQ}z!j?}Pe~C9&yS}n}npQZ$_*5LjmaB0|I0Fu#VmYh6t%2Vhq2jH;c=wo_O#B>| z(vgdQ8iK@VopCOU5ydMrDurixiywvWata?thq4E{{D?cayF2Y#Yx*RBVfOLNM3@#$ zz#*G)EvBViAWb>WVC5U5pZxXV;)Ba&&%Hek!tJF_Spn4O2K@&s-@6H>%n)0i7q>%s zO#Wmy`~wmH$0@m`aIr{D6>b+8%emOA7y0|F?w?@=p%Tc8;`j;Z2fo4Ui9KDZl>jD~ zt`2CTQZ2AU-TU$SANVYI6}0>1A4&OFYfW!Raa!^Ih$c>e5h?{ZAs{&%gfn&vyP#g4zJREpi2Xm{I>+ugoAB2j^pwz+{b> zBYF^x6w4-Nx`nscOMqM%EqF|<6phsRY!{o9?J2$9-Sre~Zje3!cm#+pJXRmRc6vPe z(ec%ndcf(tCTs2Ocq^Z$Q@Nd@Szmefy4ruL26Cn!@Lv_Zc2)!T%={G@P=+-L37K_j zMk=35;FrFmL;LU6Vjgmo0m<1{RqEl5H-MZZzKjxsts zg%NO|FIOAwAQe|p!e?+gQWf-I%gMO;>s;&R_#gD_)qbM@jZEkwsk@g*0U6o66|~A9 zhgrbyf*-SMN5&<_ViRcQKtR# zEFF+;Z7iL+gGqKYwx}_!j3NXBbK>TfB+Z!v{db`=2sGNotMZQ);H-!LoUb?Ex|l!9 z1rn-+uUAlj&ChkmrJU&U8?;!#SU!cdouSyw)b8EYgVjFQb4(w%H%J*&DTw#Zgr~Kp z0Ko@J63CD?`WNWFloo$3i_of?JuHY49LjKmiecz26@LOTAZ(<=XPnG(+<(u;_WVgA_rQ0JryGCS)nwomMbA(k zgZe@6Xl_PCk<({Olqj14HX?t0W#7!8^r05qH3;(rNI&@;T|wnX>>lQ+2u_3H4z#Pk zqqp$^Yq{E_mUV}zeFZJ%LY64mfM4<2Gt&WeNxtMn8+?Rj&D1&?HZ*_s%%i8T zikRi=N+Er;r>l$Tpi|ahGoQz%ur*!oYgqq+fnj@uDR)(8mb+$C;OSu)kg+3lq{`2@ z9+Tv@-#e|Y_^hH_<$YvmxWjDDElpa`9s=mudvRO$TC!#=ffi5JlwD&w$U`yt){)Y`=q4LZUhd;l{bi3C=drW zm!~X_UhZ$ml-j2@j~1l+0T6gJkRzxtqQjMk#xO(N};voLfE3;yCuZmvBP+Y;t=B z-zLE6?j_;&nuKCE+ierMaqrR+>usr=>iKNDcahVB3V(qJ6Ym8|0FWB6>X5X5+(tOg z8-J^BA4gUvdn>n;8q%=xu|Kf!DS#5y6Hk4NoZ?o0HS6FDn_E8CWEu2zzttp^*q7X$ zas)fx%ooRM2G_JIx~)wTTL6C&4_~$SrCKZWfzvQbuPu_n zX+K==4AeTg9{qgppb77q9Z1F7jVwShlgRZDl9Dp#RUrQ!=mcX@yV6NHSf2`HqgmfA zby!!qFf5NKo68w47(%`+Jqy$-SF&KuF4xB>^B8Lpr{0JO^3wuo(g6LDmGnn(fPu65 z4^U83FulIl=%9EwoA5S>*e*?w1t9BalQV{sK9b&OFN(Vh-(>?*;U3<;q{I`a8WwSZ9R#od~jyW5)<7Y zcT8`e%B(0&;;#&k0=D&g5Xw2L%^|+@s^epMdOm>|S&g+*4OsUy3NXa2R0)=2`(P}{0L|+rt@G%9#$A!_>n(Vcw2d8<))4% ze=5K7?0|ydri=7`Aatrx)u#VOk-qR94-v*QgIzd~bZY2CT%s&eOLS#j0gE^-m1*@m z-{v?l`gF8>nW7-#@&zura>ujub5sy2JNCHQT#9wD$t>0Lf&X*Rl5izmFv+=^e=RRg zUjOiuy!3#a1@h#j*33x5u4A|cEuV>LL4(;Fc_rogp(I_+R11aW({!aoZzaZPvJ{F~V(w7`@4j<%Va04n zF1HD8W$Tr^xN;GHgx~W7Z+{KYAhQ<8u2kLxNJ?*FcX{b-9WPcTl`kV{o*=si8&Uqg#!3y@>)0 zjl~eAss42mF-jS9JjCPgYAcQIH$w<-FQsl`ea6iJ#+CSBhV59JA=$f7dJ?!=Jg+n* z`Pe5oL6s!h3)eBnNMOaBtAsO`gvf$j*9qf~7s68wmw}HD6Ul*eD~8ql`#!p?kyzQS z+1HoI9XEvsEKxAPUe^208#;~FQ;NO>@G0WJO4dBilDm1v1O%4O^OHih%(FsMhsAkOKRu>gZ+nwU9|Uf0otX5EgJ(Y}0vWcEe&Y;RA` zAD#u0rNGV|`r$p^wL+RtGpPP4Er){(Bgo~!hM999q_#;SnhK9($9}DSg3kK}XS{qt zpZU#F5(RrB6e1gWarfLn(>VQUM+v(gv4ED9<>OQ`>052hJmWY2jU%V&S~&i=DH@^U zzC(EH{V?&md_!y7%IVv&_MPSi{f%hGyR*erYKdpL=4ImJf!}{ADs%zVm8H7? zg*gLC@f~+KwWG4KqV8feSpbv)`XQ$ZpGv>-C1r8)w5BQ#=d&d-Dz=Iz!~?sXxGL6l zi#fLyir+#6g|rHx-Ay9zVfuHDoj&wz1HHxZBqVf(lq2nDUxJt2vTfi-%F>n*PS z+DdA)Yi{~V`Dp7d2i`+tlZv^S2r`<2U%N*m>R&2xH-k*IB3{cr7C($!Y z(+Ua|L-ujQK8BF#jo`PVtZwcbH)%Lb3a^*w*~c-5Y|C88{FC6I-EbQ$d|Gnb_JIsr ztD|4}7nNfSYpawjSY|a{d>JbW*%|9hPg)($vZuG~mIs6r0h*$MEQ1O`lUUp@RmusvKGGTpe1Un!hyR^vPsE=sUV>1i4$DA<4G9f3Spb-Ghexr$g| zj1C>QGUdJoE*PkqVAM)#|00L>i>fd$8p)LSvm9+6PgcVuCwc;|iUWdsk(M@qtE2KBqf zAMG-|_B!Bvzt~kJV7;mLGpytk_1<~YZ}{*+Vsf+J2TIZ@Y0_L0I#sc-ZmRwJawZ?Z znebf~*Jl)cUaMARcwvtSRqb=V$aKY^3Q}b&j5zbCVB(DY9m6M!sQ2VV$Dg)d^}lNx zn?pkF=}xo9n)Vk=(ZtXY?9Xwvx!M=^@j3ENgKQXQacO>K?WY_S`ZB(qp!L^nfQBm( zTV7n50Y2^w?A^HQcoh)B0?}80z}u?tpO!0Yr;-Bo=-j5)E{VDAQ#33&rDjEWj%Y&d@o$LVdixvl}ihWkPB;c2EfyDFmTw1uDcS($#iYk) zLL7Ay60H#>_H|Ya!?s%usL%o703R@viFW~)%k0&kw=DvO83bt2melIIH(Ir6G9>Pr znF50967fL0l;J1EWxp4ydhXrrT!T?^M_VyPOlVR+mTYY?97w+K+#`^OMY>DY!sx4laHNknTo!R5~ z8X((<_dB0^sVW7l@$~dKqED!?xmrOlQwNZ3q@5hRlxffV@|_xt69?FdvzsS&>;ZfY zaAp|ZIss<~29E7eqLx=d-g$u1J-jP4r}`hEd$7PbtKIgD#>Vvvac8ax=o}_0pY{-< z@J`^-&HI=bvglUFKQ8uf1OGpiF#HfRz%5B)C@eos>Trl+C_qflfIOC{M6hL$PkJBc zncy9vaS4#+FNM9OaktL!-5g2p3q)5Q|1LOpmKhJ2>slo29?+hDd3N-`Y|A4jL}-w) zrGCB?VPZM~#iO}2yCE>OneU!;+My(Ld>)Viufx2!LcZYnj>#5w>7D@`AbCdPTjim! zJL)l@Pv;M`ddGI|@1QG90X+l27M*DmgsC;wBm2W%y!z)RewH)$r3bm9>Q^OP#$H$3 z)cJH`fS87mC-cc{X3|r?hyUbamYbaCN1aQN4fSguEoiI?IMC+^+6%rRrI|VS5op%x zOXD-G1)x0W_BzTBS)#VP1zNH{`*r%G?AOk3CR6Mgp`%V5z$U0#l+&{_jS z3UMwOWeOqFDL){y44A`2M$#fjaNlY5B{^GDzFKS62Y}JoN}rXxCuazdW8%U%EONbv zOZQB(5k1f&yR2|7SLUfp7~N{uJx+BNl#5}1t_wXq^-vuULZ4;NY+~eFT^pfqk?Y?J za%O^aT$_nnM8d%V{KVb%(d<@;*UYPcjc~(B=<#9{Za3qYUA9Y(@)|A)D9#`@kCyy2 z$8;3Q?3Qs>vCH`hfTV_5!GOdiAdfS50?x00@~BKGuvQmi(*G09@_$u12;I+Q-bx}3 zwlv?VsQ;g-4SB+G!kc^lJcw9$Cn;1NEjq)Mip^)_CpR&_8m~Mo9^R?7`!Zo%&`H@f zV8E&R1sP?+ARPBYx@cT+vqNshFlsMPoj-2!6`@R2w z0#}s`KvDYvD2rsejjz!pDBj7{y50&L7-d|Q`DAO@%p zgDIu~@yP)oz-f7tN8w+s-U=QLe`OX>b?d$RrlOljHJMh^Z(Fz6gmaPIJ`LM8XW9G2 z_bDsb4_+$EK>B|Q+m|K|nJ`Y<4)~s~U|-C~2iG^n#s6;L)?}4b0aCuEs8)V;!tVm2 zlauS%SC2)WQU1X!y2_=Qj4o2jq}{sfU&{a?C_VJ!I(%Usy}R_e1LkAFo=}{}o&m5| z!K)SC&A2PWKP|a`dZ?Sc-%J>B8XDdnzt^&%mK0>A6io$~Fc@9}c#7vhny@+*B3S9g zo^z4fI8S>KT44s>CMlrbmK4`9EwlRTt8*-!S*wAH$X!Eq4Ui=ex~}+`jcBv`A42=Rz)}jg(uBiE$B~}=~&%^=% z40_KE9dFXSU;H!?KYcX7l3M~S)@5#P>kYc0Zh#{J2K<+f0?4t(d#17t^K)F-JJ4-S z&+lB>#&@1xrqy~&L>Eh^14A?+ILsJPvhtZ&?f$b%NggjX3cud}bx7%s$xy3gQmC_C zif)It?wQJ_=W^F?@p8vb18J3P!9Xhyj0x9|RJSAD8=4P~Qsns6YZhsiJv2?Bde1(i zaNQ{uHv=CgWZLKOM|bj*Sj>nD$$-)%S7uMsU3G#EiT+;gTYdwbwrrj4Ty5CiIe%J#=uvaNJjGYiEt4oYuI zY9w{Mb3io<-u+h^E;e%}LQdT}D|_=l$x>y!V~A8=*5HLje`L`%I3m zmmPPIS%hv)NvE|BUXw^wP95T5tcCM2LXO!>YwdB(-&zg2IzogIC}jm;?R+Gs&(tfG zMn@5sQ&OC#V)2B}zJ3vO!HY*}{?O>VGcxx~bvN&jfGK3(a{_3eVufM?*MJfb8w;V4 zZK~FV`3|Jvc`j%UWa9dze#-W~?-&-hy{a}{pMztcNt3AxK>KInud|rM`Qx!?2rQ0# z6<4~CYIQ+11EWwjztV)|J07&+Gnx$fwVr+7f+jR@X*|Ng>?79mPLUO>BwVfVc5LV# z9GC%B?-Lzs&^8K&4Mfr?r|;T1!^+ChFF|o3xa~Hz6(XQa(A>s&LamPJ5Y&;%IUFm= zfRMb8%bG6j)v0@&^RLQss&ce+IfcJaUzd-gjb`m-0vBZL+}jW0M`p=}*g6b)f{`xc zPkui1;AHJijgi1)%j!7p!WfnVlRks}y72gKS}*`#%tUtQIY&nem69ev$tT2xZx z^s8ZK_xJ38laWWB=LK8eQnCPNGjzdveh&)8jzyvNUAKkR|BE67v1jz%I*fMB`I+&} z{Pbt~p@$#M7fWQ`r&??HHG$2ez|q@sgvkZ2^vvZ^HDTP(K`&ruhcw#v>H$`S@}^aDJG-+n#SSxLsJC2}Uy%OU<#Hp5GI2kt+Bpc|W=+Y;917&qn^ z20Qal1>;=Y?vUDKC6b>@W0@qxHj+ifkwF}l;NfBl3P4!tY+bAe$mV$3TR4B?=xTfh zUfbL;)@E}Gh5Gyz4R=&Xa$B-C=sK`eCT_snK%ZJx-ukukJ#R8dwcsdpGedVJ47Nkv=)jW}9>; zvr0j3R}vgzR(aB7hTol7ox=J`vb**7I-(cjXdQ;;AvyZw%~)pgy6KC98C|W{F+>uY zvuZ6Xh=15Vs@VjnZMcG7?zEEs^64jYGx9-V5mBi3fWQ9D`oxLBVr}S8{<_ zvONAMG>&7tUh}kQ{ACEhZ4HLTbdCCiX9Kz*K!0<_VRFRw$KzawfC8zh>>amcwZ1=^ zHjOqtde@8R!dgCkrBr*WQm*P%5(7wI%=*oPI}TcoiiA3&qPO=j7zPvtq&@tIFw`1a zxk?b~z`Le~_~L%SrXJ;e6dfKBJ3Sd{USV14Z}5&Z80bpnrdhYvEZAt0;;-tdzIa0m z2*(W|cVX-j@@-{UFLVo}6~09sS=3gLsd-gN$xI^H`VB@&F1~bDDQx=bDNnuN|5=O! zCNQ=L3@Gn_ao0ePS64@WkIuY5oe=)^%d>~n?Rj*16bH*m1D=Q+ZrF|a?ZkUc2N313 zZ(az90OiuISI{p1!bb9_N0K*VY)`XkS9}I8>}AE`kF8#95JeD3o{I@M zRJ1ACTt?isRs#giKI0*|^H*OO@|}C&`Tdc^r!GtDbKJ$K&PbppD&mx=5HbnHLrB4< z7~C0SqY6Zv$I+zWgme=k@n|0Xd_%yv(%?)<4SW$778RBs9w;6J$ZSb!=vQ|NyG?oM z&q(t(kI2x5W&gE41&?dpu~pZdn~k-w%6xN1%L0`wKJxp$bWTAFZ^xrkE(tMUlmLZJ z7iqXgNMYx-_)uxL!o(KmlLk?VP^y+%^C1HI^6Zi+;1m@oI?{_ToLyGQAz}~obktjk zA9qB^rEc80Uw!YD6%*TS2~tk8OdO)T<$y$bpx6KYZG8NVXp^h9m-Q%=$s)@eotB~S z^{Poz8I<>L16K{fROCwifr&G8^}rxS39f9q$9FfjtTgO8cUZ1euEV3-bl?0U=AO1H zXkEMZODji6!IX;6*-qJWmybQSSvjpp5R1NeL?2rjJZ>La}!NXfkEh_AH` zu-!4}%Me#u3~|~I+abH(XzNyMu<3?n>?~QCxy>3(qW)pT>O8ApZ6uJ`hu9SkQI1l< z5|)??_(dtmLA#!=NIlvCmJ%hltHfi3(&Y5GmA87>&+LE=4pni9PY#2)C#j#`9q0#i zStC0w^_QJ5k}Nv{2@{3XL>JwTXUUZBsQSz9i^1kAqmW|oU8!M9kXaNc| zL@6{XS{Fq>jE`S1PZj6iIu)Td-+h*K*<7Y)NmS%DvQ@7v@oiV|;pZVgB2W$x8_jSR zH!p^Mr&A;}j<_-41~jj}^{My+Z$JElYHut4IR=IOQ_XJ)6!BjKN@${#zo?|%bNb3@ zRV1y2u-~_~L|n&^uiq-@k>aJ8RPrqPeUkwwqUm4R;$w|rhIEu({linm2-$q)1gTl7 zTcNN2Rv&sZRFrx0M+MYc%ml8vuLs5sKK)BX?Ztk4Idgh)*5}$>GLQ&ncVcHQ`Z4{_ zpDvw(tkGR(H8lIO1sXT18&2MTs^}5)^^&bgJ8}L=HNOlOxY5{AB^9W#pf=d;+brvLH5}Qmq>>b8hV-lVWlO6# z@_6a{5mE1iY`@lgwf+}N^$zCp_uC3S{qsTtk$>J}@HFgiD}m^4{@wWh;wft?j3T;N zf=r#$FRb-v!N_^D+PbY_xD zu3TX`!LGkiKPGWOap=5xzmf&l$Sb+ps6h%o9Hc%q(5;zqyTl@1Tm>t+}&Tf)NWqT15y!V zX0f!SuLsVY4<_H8|M?_`{Wd79%b&qQVBlADjL^9|WaMF1-agfahH<|^pX?G=G@|zw zl*551OUkb%ip5tb{a?^I?tF&LSHMSoVXVx< zI}(xB-NuGx&6Rn#h$sAZ;_vW>cVa~Xrc@WpN7@EOWpkf+=nHg@69?;W*r64!I+jy&g zdNaftwOqCm=KA47o?bId&b-}#{6mucPitOga76(mJ3Jcj(z8BaKdCqMwnAuN(jV02 z$(Q;YYtc8j;Aa703t*i3<(EMay)|q<4@G%Hotm%KKw@9wNhX(^tfcB*QM<|e*%kTy z`io`d!h&PnwW5(bs+5#59h6MtNH({-fi5XgRNG?q3u4X4%BH}IzC|2h+dAigDfFJC z?`j0SxW93{`*lQk_rdZf(U)I|)A4CSu8+*R>+=LXIsN(p&CgOPD z;>*&i%$RKh`U=4$uZ6V@o9Uh^-OrPvMHUBpKZ$voy{_J5OH=bl?2Q!+a(XP!G)3~Y z7aM)Rd8(m)t>DD#@4lv%(lb>~aVh~P@~KI!2Z+QT}(ObrcBJV7=1 zSz_JC`_z7GpfV|ylosZUqn#(*?JTJ|r@vbFu%yi$6Vi!>la!wt#ZeZE!%urL>%MAe;4eoAY>UEkd_AhY5IXNxx|`VExo-_pH3H@%SMc{WH*K#- z?&a=2RmqVYjvpaUX~A_qaiPd>aEmqQu&Lm!tmKV&{58@KZ&D;Qz(Ffkcb$QF7^6f` zIeG|{RdD;XmEH2-7Px1|VN|=nH@?S7=jqmf8GrxWFRFKo@{4A?JjyRZT@7|EUzvF= z_5^QGI32gPswY~rZPBM7JsP`DHfZoP&Gub9REFU4_3Fr^bT4jF1mnCw8W*mj(Mfpb zwz{WQTxjg2CNqg9g}S#u+Umt)-(v+CIpxINuhO%z%q&Z>^%|FEHBNEZL+}i{j#Ns~ z!1VykxiE)C*|@%Z7GKGggeN&ES=k7del;9Dg*m>yO1w;3HK17HrUiE~PooggTRZ6O zH)$J4K#6#vTrl^fVhu3k=XUGQNi%53j^)Jh!NGb5)qwT+)X(1KFnptAxxRAVgdm*i zJz&~kiKyxL%97B2X%UziGX=#92GT&~VT{J`E^pHAq27SwB8!{jes9_2!RJV)&85Lz zUVEAvr<>LCGaSTsd-ke&k^9Jq-HH4|`vwm!IKzCyuBCE@Ynp6v;56=bp<~mX7OEXg zNy%!y;i^8}yKgqNx5b6ji;mdwbtUS~a3aAh!7zgs*~1uHRu?9i&BO{Un)AlqLpq&o zbXrN=wlhJ;IyR@FvcjPgUKapaRuSAgj~{5c|hFAyk!@!Hl8=a<)YARWI7w2Bua z54$ytiz4(}HVjms&Pi21kd&GB-gLgCktiW?-X|nhqoiaK6Q{0gDphS$yFUV5X zLWI2(6a+y9M7m1vD$=A$N4nB`?}UH_meQ2okxmE%=@LpP0s=y4A#_AK0U{-Yo;%}O zd!O&yd!O&SXN)t(9rvEg7#TnkUSPhnJkM|b|Ib9`#&S8F)K`-2RB0(oPaqB+9PD5lE;%~`Y6cB1c1bW`EmtRm4;gUU- z&OylDRJ}Tx=f!T{*qf}SigBB98SO8mD}!&r*BhJDZ+?&m-R`h4EgRD7#;JNi{$%h& z|FXGzvvp06+$jTN=|V)IC+~;IkLrk7;f+fjehF=l^b|7Xx9eto zI=wZ^$4_E6Ux?ut7;5_*gpt!7JEAfKW-Fm+VvkGJ%HeNYN`-CgY`Ym*<|XtcIUFTm z{0n^ba4@lo;5~kCb>b0v16x&bFzv$EKx&vzO1G{s+U-n_sJkRm$2zkXS6s2`*4TSo z&s8GvWO{ncd)kSD3D)Dc@qXGB`}C3)-e=0Ts>J$m!Cagw*k?yfRIKI;p1yc}v5)r) zT0bz*acCac)^tQ6Jx>EI`{tzzK0T4NstU(b{}R)FNk0TEOafPzH+`m_y@8Gf7I*bg z;HPIxO71_3&M7|qSgvRX028j7OLm3}3#69K%Cr3P#i^-0QkY&J2_|&aoh{!^j_h-m zTZKJda|M<85{ZEa`f>RxW*Z-tcSoA%eH7Ev7t%xx`&WfATYKpz{asu0qyVK9T|khc zRJFnAmhuGpy*9n+*%=RyXW~i-)PG*JLI@2G{3WO|7~UJaQ`T2hGd9=Ono?>Vm0&YvkU42-KFUD&hko( z{7kRxy*s(GMuUX~iss`-Mgk|VpO+^!>J;_#N3t7U4&3c1BLvoo<_izA9_p&%G0s%c zMDG)r1Jcn|Oxv`}#rC%Z%r}_oxlvp7?+#WGo~nshvZdjb}hH zTaxzxzv8C{Aao?PrtDKNHqCRj&x*OeBj)yUMvgQdZsr_Of?^Ayzb^@A8j`Sjhsbm& zPslJTNZuKP=C*Nk$SIPhkQn(La}8g!()osYdqNV2aatO-*bacHfs~79~c5#(&;?)th$VR>!-<$A-t=}IL_!cgMm_D zT49##784(J_^j}G&r2~Hy(-!ehl(_XE%Y;8VV&w{&%Q4nzUdTZP0FkFtW|#A<2Am! zDnr!X3A@xc9q@YAVsC10>8JZ@v|RtN#v*>XvBPnbmLgZ6&+%l^A~B?|rt;I&HtM5! zbJ1xzRx&=-E59ZDUVu=8&f7-}W1pVcLseK`gYdI{zUlJxmbqHCmEVTbMza?bYaSAT z$)%Qa9HwHg;gYd~dfmLsV`sLg-6g*^b@RtVv-{N2xysR0O1Twb<56g}V8sfdL3?%i z{cfRi8Ge&cK|Fx~;>>fRGsBrAg4Z=?=b_nb)AI8|M%Uq(5}RH_;O|_ktD6z|V=b(8 z6{o7sp`o|6k=*OYK19^g!h0=Jy64uMY}^2koaQdJp#2}2N76!{jMnK6vdy?jRk({; zRkMe$s4|wx>^;xlC}{JVvuN)OWu|Y8wC{AT zK2d%|YR0{*758N_yQox8{xkg7>Y=QdF^aqg7JO#sglBYDxgy8eUTPPVa~;2A#;@AN z-`lNHWmeF?>YfmPm%<&aLKS>&`qc$bHK2_OIevRr&Ej~Bo}b7jw|?%F`++Qd`i2_=|In)i>1r%K6TH>yuEA1A7-Z?@CNbmFKfD11$;@7D_!4cbKU`n3A?`G@3zFI7sd zKqWqqqyCpLLFIbiGhP0RVt~?cT>j~|LekRSHGFFZ0Lh?DMgjmX^*a8417$vJ?S3kP z0ACsTRXMLRQ0a93LG(k4cP(*$`K|KQBo7qHX=@*kF_E|&53E;*>j6s1_nvzk@Pt|P2_{+nO#br^uk%sHD97|7 z&c7Y1sm%YfqI2i7XIH-J-PMDO2f6`mAo^G@@|B zgwfSe1f=U}vR+X`kC%#n9J(=^_55M;rsI#apZJ7nV+^nv@bRCh)6ZxAyL1`6>Hqz2 z8H*OQ%r7DM*<<#o0%1r+LhHxD#f%Y8Q(v(_x0{$zSO)n9Ez)J%sH=@`8|Jy z5x=eX?;L{!Ayhec$3r*cX1r)qs5&z;;*X>%t1UTAHP#5#1=3B6aQAN*+rxIr^ z1?P|F`jL-zFx*so5RIxAhNuIkadUqQmY#=}juv(b(ux2sF36j&q`tA}wCsaHU&a_m1e- z^s~28Xy}L5D}fhYN@15?ZjgZueqBN&U-UoIoA?e~qTQh4?%xN;C{ExG_9K%=@M_B?PK|>F|3$l4?T|gDz6_BE=WR8Iz$<#% z!|!$v#M}h1)!p&cUPKd`bCVGjo|gM%q&@GQkD$2 zAu6QksS|HJ^xVD$?}Yc$EEAmLvEzlVaPX7%^-KNOPty4J^CQEI6Qt&cN3(`K39DEA zmSsKrGUY#cK^((qMw4KcE~zrf33R$0Ouvntx${acb9prSlCXD2A#!ukK5kdt<$i~2 z`l$@JGBX{VO>;YWXy|5nZrlXNT>*jZm9W@}aG2+}&#U8O{-!+BT{~4>U)a|NVZq#J0 zQ_YdU38t zvQwGC>wfL@U9xRmG3d+bf?u#?x?`&I;jLPv_wp|PIDa=iN z_}zB;^axXefT=k)7R}B;va|dTUz>N4_g4-#riolfc~n%6bR8hLGe`OoDi+^sv3kE!>&r|Z_2k|V&7ODt{n%oL)U;{4k zKtKR)804tBI)9mU6;J&gwV$-WHiP*16T{u#?p+OS9smQ@$#n%gh?-6qeFq_@)!5ntHWp_}w z4d1lbF#>Is>DSNd5&($+wkwde$JZvJa?bA9Uii*PadC3`;?UPC@ZF}&6FkPEqDU1z za!4qmH}*O0tvTt3fMDP7N*7B$`f@-`L%o8VkJt}iH5uzqq;@e`5pLxMLH;N2Ckx#Y z*ww-PF4t7Sq|s!*7~Hq3O8K5$kFcttj0x+&>7Ni$h!mkMyPYpxK8~|Zx|;##&&gyT zWq1`NFq}QDf7&XL&Kaq==_Rzn7VGo5E@r%Qk$0y-{7aIoW)ee@jGCbKntrxgVE_AL z7V`wodfUDYxupy?i=4~;_0BCw59ePg!dn)+BYKh<*8GO64l{}HDq+H^Ol)(AW16{f z3KlDKam0*3O2>tZ9>)#oG^KfWIt02n1(XMzzw%XoG({a0GZZkFu&D7N0Ew4IplMv8 zRw^fucx1XYa;g4Dtaj)_ak#x$M&R8WtEsqAY=IiiaG&XmpUDOm6wIa!ER*P*rL%InZ9)=QeYGixZ`og?u*X`%T;w_aJd=Ej0-?fy*Ynja!)4%9|; zALgTR9_LiN2>^w+|3i@(eWMIPQPQd)<``$=2w7;|Ckjf)A4n?y>N=ipL{^L00kv3< zWI#z9BRfwu=_JIdvw{QQA81y5UeA4_^Oa^ukLOBl0rEk@St=%+W)-U|@F+9S41>({ zYi>wl&1($nTL&wJC%VF{QnEEf7nX^(yVJyH>BsL=HpkgXcYNP=iLFSQfp4?QF4({5 zLJT+h_OZt2iZm$3>R)J#qFbSlzHsMbWPfVmR)Ay=nmJFHdza*$lp24Fvr+4QGPX7e zm?|7Qgh0jE&&sF7cc$0<#4H zRkmOHInLjG<{bChIVW2bvz7>LoOGHPuV7qcPh(VKhrKs&^4nhl zJ|Tku0fAlnEr~iEX}sYNBgS5mN3fujUD`}}X}tVcmY&rm8s#`w=fLfsi1T~{N^|6s z#80-|#F7q1%g~smQ8XGos%Ao5ss7$5hflnrdTJRVmW0PBE~~5gXT`+418`~(Ti#$C z&z(64k-7M0%?^b$b89@Py_M;a#tEx0&{sUWMQ<-qwngz@qdsH9D@AL^$xge`y7Pw9 zM>=z{D{uRJCMxo;&jtJk3Rv7#+x0{}?Kn7b6nj{6n>(aYjA<}ocOU->x##aLR;#=$ zH{hQvlpR+x+c;U8sd3HNaNmMU|LCdq$aD@EUx0osx`u;@6qb7H1v5+(e{ZCmF6)z!XEE_icpS3?76ahK6FpZ*k+HWgQlVbc1b|D=OoPOwpxwUhmuab~xw=iJ z5$zRQ$+CRd#iC%~5K8+`~s2z{veQ4H=p^GuA2{|u)V#Jz+kTihA=Q2cp1+|+<6VM9tfulzOtX@nF#Yk_`>2|K`tHV$ zh*FgPo;d<+U}W9AyV~uDY8H{xzpN_WB>8E%lIqQ_v-6Us(mvo_jscaEQ zw%?XQrXT^X-QFieGpLT0Zm{C`R|h*B6iz(P!!xcgdoe{$?oRe<>!aMiTak$mj#rfB@rEV*4hpdKKFPT5VCxKvDD8vv{ zvydpI?|Y8+U%6-32pzaQp{Q`RGTO)Z?i+5txv`F5xf(>k{il2(Fa_~h?~!;4a$rpu zwkSTxlHUztGjVNZy~GVRCg6KWG~eZwb#jranVk>L2d_PYJ#!!8QCCPo(i4dXpr-Cl zkhphtJ4pwh&dDuYlx(jT1_TOCEBCr@ik3G^rzTT$g;7}kDr?HDHI|i;4UfL?V8ek9 zCdq&~b}qVX-2iT4UKZ@aZcq$@<)jR@>myFmISvmYhK!YDYxRr_J=F4}a4+U4k)ClH z1d;qgjmhp4MH8YNNwE8?Bq(MFY8P|sFmBRPh2{Wm%4ruIQoHTd>5WKpFjT%>T9N9I zcHF&nf_S&Oorez=oip;#ZvHtCKfpnu2GZ6`w_91+mQx$PtA2H5>puJpG<+Pg8oKB# z3Crk~3M6vJoC4=`QnDKX7SXkg3eA(X^}8pVNBHfpFFqS;7TM&J(}%vC{pF7^W}b-w zbYJ?VXgdjhWtTem8-*4zc94iKej=u##Or2D{M6Q@$Rj*>?zf&?iqG?8ilK}??d&ug$w!nj| zLzMZlx^4gaGb}v|P3w=z>bv>y)@BAKP{ifNo_m27&gmElLX|DHhI_iD6Tu(Nk**im?pKi zuCucyPy1=tB5vYz?;UtNnYD_QEv@Zhi-8UXw01oA`$Afm0zfzUN5)A%D4}&Cq-^o% zH!Maa?nSwqc69;i2sXD5wuoOQxt9iswsd#?GtOl#w{mfg`deg2jH7et`>&2Qtc;d~ z#V=)o$|30c^Ri_@wd&>0GbJESS((!6V{@0Yyj8dEGP-tBcKCf??_}~-9zL6r6`q2| zHeLOeZ&jfp)-Z(HX9V<%J=D;tRvC6a&5W;q~TffD-gXdq@wnyD_&+q0%GQB}S4do$t5NDU2K%sc0WZ|0?XRn7{fg5wCk#e3@skyoxi*^(b4U8!5 zKxwBmBWS$tjSNivMY9DaYri;E4IR@{Hgw!9?<+}iF(Ionft2)vC@^s@LBAL|`__ct zB=5gmUjKFYn4P0;xV82-P($u#@vU0t;<2A~tMhu9D)y7fM{NBs?=IxM>bpr+wDm>O zXsygjOJ*v!P|Awd9YhOKGHLs3QM}o3{f*h|%pHH=xExL5!J}id22i7S=c+Fq5~B@% zq2O+@32+4$fP)nfn-%BiEvc}CSbZAk8G;zJu}l~vwkngM*6H?_OA3KAK-&g(>|lj^ z^EYJOEP9BW*v{>`h!cF6fMngA97MC z_JL4C`IOU4-+#aT$(@T@Wsy^2C$`2(G}B`BE|ohWMiM{>VWQ=%%teBeO*#K~6P@4Iq!Hn$a(vB0@DVV5Pc9}j*Z}4e^?X}jo z?b%LrzK;^C5IS1ebKaZb#*Ffi`&UrLMdH%(RkR>XUQCx8?Ws!(ywXsU}T;vOpKrStf_wW>!?)xyOBb3#2} zlHI5|MNsQ#bZXP8f0bNWyVs`ccn56t&;#LWZFSYSh2cC_xF+Pa)sP)c)AamcKZ!8L zf7qR+lvxSRH-XkE#(67-i39!OKSXI;g|ob?85M#}!&jx2Ix|6gE&eOOJc@V8bl52r zD95o_)ElFWwm71@zYd%@v5`sgPJe2iKso-&ZPp~tj^{(Q+v3%hGo@A~=}Oe?uZh3B z8&hC(K_Vqi50(2TU@v)z*{thrS%iI}a;>lnd8(hOCEFIsmCq(BaxEy)xJj z9;RrEKi=@L$(i~^5xsH`y4<~h_C}S)HBd23AUz+rBC{qba<>p|-@Rc6T7Ix43n5(` z2Yn~Xuk`>>_J{7hw>n-tsDCU)MFH3E@785R?60J-_@$BN6u>6@{{&=VW}ICA(vHbr z9F{#Y;ZiN~cYc{Q+`;~4b$lZ9mjAj`pA+`$U7p8PCc8%Z-y7}{{gk0;P}=1GiFU7P zNx<}u;Zv)7i-b=#{&T^YQ4AbbFABI4@b1Qel-sv?D~Zzq>|B*J)M(7gnnjwq<_35c_*B42ja5D5W)rX~&Yk<_D$77A#Mu>k? zRQylP*z=7C2cxorzzDf?AyAVzwfEr#X^PV%By9bx;^Tvb)Jp%xZB*R;8WifcTXeu~ zz86;X%?L=&-}l|rQ1=3<3lYc=a}4X6hNn(^^1Du)kb4C70JZdgqZJ!P%hhu)FR!g$ zMI~*lLzK-xOBVeP^jC!S0F}7;1e-n{;i7iiCxN8tyP*ZB#GSztlmBNWZU8u%4kyHb zAwl1y*Uw?5l(};9h;B$M303wY<8Inrhll0!B2rA6johK1*-GtoId5g21nZa2r_#X< zvP27yaKXemX#0G|mb|#{qeTys_^ZjB4T{LUOE4t9T?~Tw0$1jRAOjl>`+rGBBgXWK zdbeefPJssCsw9cur_T2$ml}+BW#_)AX<~6Bwskn3;7%gwALT`mrs^H}FH7gbRctls zPcI1d09jcEmzT9q7nFXt?pXdPNt$7-Qd`6C6p8f!y|RlY^jUTFNBrVJ+-_>y3_H1$ z62zg=5IDlIT7N+8;Xfj%Ws8cE*IqiV{Nbny>LGZUPK=J_&_Froju957DBMv>LQuhmU)Mt0ZTVU4PQG6cQ*i#;{WbG$!UJn*$O!Adp$M>UHHuD^v$$7^R zv!G+NRgm{4RkYv1HV5bDPH#J^IbA=rm*JAJX*6YcgmpZS_24CJ!@=Pn$cYE&RT!iT_f|~2Ths}WF>F^dzaf5>dhgMZB9v zy7ZEfqJ4oOR)fn*XXJ8>L(h4AM_lluX#Jr*uCr1YC+zN51~AdQV}L&TwlQ4k-BsP* zN1Wvi5~@+R)zo^QvTI#qVR1DZ_z}}*oY(7?WCd=RRlpEf4hQ?wyBYtgva<#Xb<_C% zKZJe{`UkpsGTxi6|1KN8yQ_EhC&I}G{?5aMs@;~fE}zH1-`Tm>tTU_&TzKbgv&M0f zOMmZ$S;gDEHZ}Hx5`N|LbZW-e+p|(fz=~K;l(}sZlEa#v zQ9N*jSA9DR3V=(?>n#yoSL7l{1vBEWG{{Em;xj;z5Hx5Lr|4)7@k5D5?4ioTvrnIl z*G&yVqLxUXEzh>xSw#-craiXs+Y#z;Tk*q3Z1LSy3o1QBR-Z+?iLA}<6$3JRT8*j+ z$|hOsv9f&D=B7#qkdHWF6B>c%bi#@NTRe$P;oc!;Yi%9Z*80@`={OH2DF4Eo^pLArbP- zjQFNGyKzL<@Yf&S(H2_Rf#dnlE6BlY)Ovk;9}2hux63T}RJSwy{9oTE>zT;)!o@^+ zFGu0Gh_VD|Q-3OuDW4TfP^F8ouHgOX(H`pK_nHE1n%SRfT?gi}KGs`edtq3czMgCT z-#tLRtBKx7f=AG9@rm=x)OeMc;gUK*-Vv~i1qm=w7@9SlsuxGxd*|QVVyQ@vS^ZYi zrqBq=590?RGaFdAF$#T}RuS%_l(PKq}IgKX{NGZD4WS zy6<=`mXGV;JGJ{wbNMK_yaQQE*7Bt%>P7NF_scV~i&Pzy#bl3km9auwkS# zV7EVzj1Wkkzcf|KyyDQMcs>E=Nk_7 zXGoXWXCmr0N}G8E8&^uE+679x-G)g6Itlz2+2el@n)PDhqkEzhw(h+%wq-N3B|e9bx|be?n?oR-!h5?C~VsbI*EDn<@;Y;S}oKIyE}R7XS! z&gV1O(|0Gfy)*(fd!*rAaCZ?$Z{|EDiK~g2c~P=qisE`0*XvcC7H&ljrDV_T$X5lS zLZ@lZ^}0cltFIt@qvbmA9hNxS8~C1!O*})zKb3oYWHD<|(Z}HjN;ar> zb$lY%UOof30JivP9r@w98K2tQgk{ycNLJbkATbjaso@!GJ>q-{Fd6WICQ9GxThRe| zdh0`K7QLE7*BaN^5_jD^vKDSV)e0PRru-TURg0+r{apCw)8`dNUsrA_<>D+tEVT6g zUVzHu%`3+9``$KTCh#j+w%(#l4}GG`90@gW;OuiPY6o26D%othmY%re!7Cm~KC@bQ z61wyFthg(%p_9+u0!l?=vJ?^&plUrx`}jPO>``>4RQc9Xa{0{?)c$AXaI&aUM5Jc$ zn4PL_I0s-6QIWd8`buxD0H{ADLQ-gPtpE(81ZdmH*41ArF4|vEw9YwTzXuA3m*xBc z7{DKArQ3k<@XLnxM;D-gyiGo1xj=x0_s=tySMDkCpBDV=Rb&_L--p$oU;NvV$3)&A zK73e#UAY(fdtPqg1K=f8N~VlrB8QBldWY48anf;A-9Px7jj}qfumG2?62+azWBfWm z$u-kh?EVD}Av*>^4fAPUM;1M8wJIv_IgmS(VLAOJ3QLiSzZ?I&zi4St+&TW0LNl~? zdkUE1$YL;rEEi_QGxT?I3h)o{+G+q**oPzmi-NR?*ofW67Wa8@!P*1M20$>@q^0RD ztOlej+$C>Z&x{Vd%eo?=ZJKTT0cg>9jZAK#xeAn$U;h3F#kXIK{>czH^v}G4BAk5X zz2vuIK$|uSL>R{Hck_BFm1xmz9Y8W{q}(8L{tB}hoziuXU?%;m+G!lwHN1Wq@EWJ# zvj<3UP)DX3jh=_Y`^}6ju5>P-Hwg3x#V~K-qvMtEk z1%#{{Zgh64jKyH8bP|d(#)$f;MiX}@8}P%Iv`_=MF$9*}bt0~HB7W9M^HDtS^pm1lu?U}oC0opK ztvMc&qgd|ORmsb~h6FXumsv8wN#7wK)UYl#2eh}i@ixh7g2`<{Zn_HvWpU5G1RW&4 zT(lJtP5)|cfN0Z#n(xKkV-~Cn#?2J9P|L^pWX?TI&wkGtkW|Jhvt(Ya7sn9dI{X=> zo$weVV)h7X6#SZRZJ z!XatO=UYN$+S`kL#r%>dk(7VPQARE0Ow6=KT!Q)|EiA@oVd6+DBur z<$cZSaz0*Fs!8@e?D^1`d;K!`v!`*V&q18uoYzr-xTyG~FY`ZSFxM z1bHG)^{O9D@cymElkV*9h9w$;++o%F8ttV32l!W&M_C1Ym;zFqvsnGIkY3|n%5!D9 z*fE1y3_cNGLd@`-lEek8>U2-fN)_<$M$Ce1t!`N`FlFc6B>$Eg zV3{BhINBF(X&fY_Au2*)*;KvZNw!OG5u@(~_F2 zMUlF(7Uc*9HBqy&u8JhryC6$O@~EAHhSyFor80d##`V|1_Un}eoTZk!#`{O3i*eP> zL)^)I1DB#o}0}1SEsF)}ZqVv6Qn#r`ybLS%hx=*bj z<`W*6FIUV0haiz(;h`La7s|>{xsz92Pv=kkPRrSE)Sv4g0X?2KRedd{{4{97BO43H zl{eY`z`r<-?={=r(P?ma)%L93tiQB}tJ}89fzVSBIM;E_xY;@fc**nhdoTCSF-fYV zYfElt_6nT%Nn-h%{Y~+VU(P|!d|7XuFy~Ttn89Biin$^Mgf(%wtth@GZqkM1dR>&? zqxkIrm#2wpaqaJ1C51k)U)#Va7akFIkRM#r=8~n`H>%VpZ_x)s1A||sCbT@-LexL3 z9A8MetE;b-Pv6+&RBnLQf(CEjzZbAgJbh|aDCw;CUL*4cc|P&mz<3Io-AET_jEfdK zkq3S8cl=Uv@QFO9s*AJ18sNY~PSnF5>wrn#EpLyN--+IF8{ub@)b{}|!` zztAyk9Re1!RecPoreqz>8zOG0af%;ij<5 zmoJdgZAx)8?TY-&`p{;7v6#r~>eXqES<17XeRaMI1tzdc_|O@OcJ_DpG$+Oo*Z4D7 zU?@+pchC&d0KH;ulJGXpEOVRRgr|K~Z?^@PH>$h|Haob4A-)0vo-lD&$5uSc$RtWJ zT4M-~D-oH*59B^f-rFlbf1X<%f*X219ptd}O)^9~S%0Pt(&a&9t>{!WVQUwa{0B3w4T1UU|lav1MQ-#Z&Sa$ zLq!w8@idYC3;MkM;0v|gmUh(8*EGjOO}@)_o(^z_er0p|wcASATR&BNjRvJA1+*`x1BDrEB*|dF`d=Bxm}28miE4>&d-L<68ePXAWn+D$muM z*Me~_KHi14J^c0FS*OG>@KE7L z*%bGJKGqtFYZ80!w&{G6FWbV^kN&ZCXeTxEWMjCiw$5>8_=42MDBO|Sa55rFUv8wV zYR6lG3EPEc30UU3j%{=*k4s21keAp`&bJ1&K(tiig7I>a3fIS{3;Ib1F>#sK?s33G zPg`e?r8Y9gN0YRTdYq8B-QCyT(?rE>BOOm8*wZ3ZRB< zSHi5C0>2sI|0rjMYqljk79Yv_x1pt))FPZ6uaNuIBAGgv(6bUySmp)iHJ#`;< zmtYKZeECqz<%@s6HjXpi@i>AHZcVaH@$b%up+mO#tVSD_E!?z@ zj%p|IR}BxI5Kksi8AIHz4JU%*&SH=w7K?u5#_n(GimC-!HQq-vzL2FC$G_XLSzF}` zB!%&G+~I6cIAA~W;z`v*bI@n+!N!*G>l_p*xq?C-I6HXH2%E+V`(8B;6SLxw?UbKM z8R|9YmUa3vYqr)5o+L23h&K+ISbnDEm2p8V-J>V-;61HHyZo`JRU&=O989BV_l@(! z9ahL0-9aqTZ}pTz_HZmJ^z^yGw`#QTP(MYB-gom)M#G!ON{-_#&{_Cc>q!wr@JwhG z`i}A>y0xuP_QzZ2j?|*GXUB0H0#Y95acV_zhV-Kjs~Kq(e9s@5%2QB$#K}78ZF(#t znROql$tFeDGC0+UjLbvUB3Tkb{2Y;oLGVnOUl0zHzUA9&IM>Te0?MXe&F8M zN2URqL5TFQ-7B^0{|}6FC6q5 z@}#Knwk|o_@w=wc+=}b5Xy(Ogq*jleyYn*3{-NJ`@vxW1bP2tZ*K~&0gf~jfiEqb; z`1YzTrTT*|>A;bRakxqXv+(%#Cstko+TzmNLRbxul1e81dQP7tKdX&K7&1uD#Nn1Q zhBIsydrTVDhe=Dql}Ew#uKoFs{%nNMvmgIzh4a_{e5M7Q4EyurBgLQ2KMMZPKcArZ z|KMBP7m$?k`d+t78qCYERngOq(Vxk!Z4B$m;e&7cEDx=g{HXVwW>x=~6vI~Iv&Va} zAltfk-m^IW&WG*XMpJP>lopKEAEjU2BxMDfPb2*8lo9D(nqCZ-dE8cM^k)ynJvI5d zeY|dQwToy7W1~}|Tp^nu*_>#5e;jg2OLjA>ezpmJ2|_IR5jHCuH)?sN#(TGzd#q?} z=uE(Lzp40g#_yYvu$&sT0J*xJ$lt&X{#eQ3Hw*ic)VD3Y?#ZM?{&kV*g)g>V$v7bf zN~Je@$iFR#!up50Lfz+Y(C1^<;;`As!W5kesUYU#>~rOlFmQ3;K3GBmd*byjq+cT^ zYP$0q^o#_pLP&$gw6uATkM1pjGoiGB&wpd4J>`yi=2y&}^u0G4$hT(X8Hh zuaZVp=evIu$Rrb)t))?KI%z}wTBvy&9nCEAMhT)w8{6yHzV03{xlaTu7F=eKs415& zgiPNprhs;x zE$YvDw@qcfNZshTu`*aSNrb`5tX>$O&mb?YlfJoH1uSd3bqy2TyNw`w0pC=kxP6tD z$H!Pl8PTE+ZiebR+nFHr7)h#?Gutwa7ZZ!%F0N^T$>5FiO1Q;fYi~5Ro7^CX^ms;e z4~Dk^Pwm;?e7}Mtf>GMj2yr%2&v%x7;c2}TwlCc?h4Kg8Cl92Bsw(6+U9hCDg7vfB zb*Om8Vh(d~s3X5HleZ1{B0>;St3 zDI`E<(^TByiLOZm9jn7Y8kg7N&Zl#+hDi)O3~$yJo7{LWtJy2rsM49dfrXQ^e`rn9 z;r-W!ENKr9>&`0nc&TSKtg)oGA1<{D%7#2W_{RTO6r~bF?Dhcr>(}ATe{#UuJvTV7#|SKe)@#=KL=V z6T9AYCXzMeEatoft(orTU>1mB>y)ZX#>#ln-SjVIB67e@o(QxlkTaggZu;n#H2ESo zP4xI1-a|6yLTW4Z%5YBJ`Y^j6V-|fh#XgYe&BlE95wTd2efB3;G*^~3$`0Ey&Ma!> z(wk&Vw$1&qw+>OjHyuv%3h<1=8;FZYRfnI=(y>aFNeOx@-xbq*D&?yTk=YY=p~DZr zoyWaRJ=Cx=%FfpPFdh;Sg1J-gsuBe*f2Z9JtCf_zmQLL;!f2(+bt`F(&|T%6_&j1( zZx&&=fV2)<=PKatg@owKR;b#{p5%~W$2PlMX^*m4$&XrSf^%&tj#hl5->n#Q4Nsw` za{gbT)71Ke&$kw#$CvVI1M*u*p`W)d*UX;SEKYkz(#nU8KLYtmF9N;`Vqh@jjKGb# z#|im3A#TK`ntwVkKkbBtni`inmYbP3VGR!NjZ%U$-w>(U?Gj=PAv2hy9Pb*H!xP;tZ>M3QwVB8TkWUwAB863;$B|%}X{}0J zb#V7XjJO!Q0t%^Yl6RRo9O64%$eztFpV}hw^70SFvWJMkw{vD7<1|gXJ%SzIJyhcy z9!vW+7mC7@qQ?-3nRg+i?`#_rQ0tLBJOpmg=W;Eup;-~VnPTea=;2Dn9kP0p(h`u< z_TiI>Nk$CI$*c>jlH<3Nzp&GuscyllIT<@WGFVhNSu71@LtNmEQ=ewIn@Gbhmo*0h zvIZ;TZS|L@uEZ5I*C#8BqAX{+)gw3J%G>3%E+}OvEyymCI2CK<%73Vt6g+x3Q)8G} z`c6HXm$pvXY?h=Yda^}5va>_2TW;p1xaSl82HZSb&YS3=Q&560KIrsehf^$%@4}Bi z%02p}EEtI-z1P_XZN+%lw^6O`2FIFXoP7S!QM3G>VoS=e6#cn6bsEXZ`RAr10_WG> zrcMl99&9^PB=~E-d`QlJWKC?ULtmfic2&ZJuP59g=y@4c1=D5X{p?lWs|C<0#EMyK zrb8=p^?c?&jVAc-zLq@8j62!E!RQ4Qh6pBFO?kgWbyXmhL~B^F+g#_lR0AkcOXl9q z=2OkWWiu0^eEOz(w^3+tbR)vROARj75LhXgoUeF(sb|jJp6KMJ5=Ykr(Sr;YUl#ae z{kgX3c*0~m&=jmbqhTDWepn;-Ia>V$hVBHIXykI%s1L0aokVxy@klg-?$CU4Vs^g`h2}Fp z{y5+&B)9v_6K>%#cym+3Vg@9K6(j24)90=N62vd-k+(n18OCuc2XuVG(T;9J=8vxb zXJ8e))IjR+3)bJ77w{A^%5O|}?KUdMosu+PGl%EY3PA+nPGN&ve`~2)3FpmT4;SG^ z!$t|K*YKT=s7>bWxpz$W=0hyaNIz8fLBhHA{_ulq>E7zvz49|BI0E}Mo6M;=yQ_rm z@qm)83FVV-arvmpX+&^DYf`9$72tp{>w7Ti=0m(g7sR|Af!a%JMV;T)67=gvt4%|G zd)@BYkU<7d;CRioL^VQNq%?V~0gtsZ$eEHj+JQ>K)E7pFt+~yxI^0oJq6}eITk6;0 z&$2uc&bWK{%e(QHHBFCGq-=WU9~No&nd^w``xOuuP!0F|)`&6oI&$R#a8FfFrXhjl zv%7hDO^08+Q6c76Ml^(vJ?%b0YMsmyPnS2?Ft0D>&8WQ3CmEZTB2v1OLR0R{h#IPh zrLzj#maM(m4XXnjYwch)R*OyLme%Qvywg{a2uKmSu>Ws4eP}>%9qW@3@A}edx|PyT zXFYMsi=;f3#oK&_=yv+3z0r|?S#g{F6X)L~9;8sZU!FF~Jb1>)UZSZLdp;xl)H&P& zEEOhp1ZX;zZjb|+22&WJ=Z(uXhE|K2bvgFRF&kWk@o^xM`lf06Dt!~oA z7-=6e@e*x5R;zF=bDHLL+r;jan7)1zpS=7#(8kA&peAXDT!eoxwJh)({t2j^4sxR}OI(0F(+qQ+8I*ed>l2p8D@oVNkU=4Xzm}iV zjBRSv>6i4f30H7Dj3)rH0@sxnH_dzG6uF*=@idpP``FC9p*uGlqL~=$toMzBJ)ZM* zmIm~?vzX5iXFQGDI6v`NZ4tSD@wK>J^O5{M>37qV!b`lZ z7xO!iS7mTf(H{nV5-gs%;nx!%7vf(H&a$j~B5rV0UB^dQgvq9jG`acU&U?`;_%Q_* z*ZR31bryNJ8YEP%8EFbODJHOtx**KOaJiQ8Y^}sVt_4;~ zW^5Et+?%L{6eS6mU!VMSvZvG(sY1fbqsn9YM?4d_lKY2Ar~5^Yk~4)p+d7crJa$dE zyurZ}C&TiArvIzGGmnRQZ~OR2>Krkh6A_7YP?V*VZ7h|oVQ?~JUqTpT8KW^FnNozZ zWgS~~<78x)Jwmc1Yh%s63}KQmnCB~<=YF2o{d%4IzMub|=ehrz*UWEbuIu`Jf4{k| z_vf1H%h*=U^Rt>RzMFHux~*(sD8DQ1?$ODO$=e@$`#z-ig}REDI|hhpuU`n1*8CgQ zLuXh#W)wH&Gs8~OwBNZ9lY%X7esM`t4%(+UqN~cDvaa(=r1P%$a$-%0Lf?$aEluF$f>YMVzjJr zC6(WrJgq%3v^xJe@MCWQ$hbNRZ@k4xx><|P?7HVEiGyC4gx`u_v6w#gic1BOn z%zao&otn0Yj_+EC6;IKK62sePU=$?m{pIfhE0#ugrlOSHLAeW*o4LW!by}QDs-Cr& zwixcq#9H;@W*f`K1n-tMX$rzz#6%En|L?FdjLvB**|o#JLj=@% zV7Vs?xv3`O0(tR?O0T@lh~W1HVu9az^lBi3>BjUPWekWMwwT{q@;M4CSLxTOKV!Tv z{57m(f1Q@`KB=!#kG9(|yJOj5rTgoyf|qzI_qfG>1%`i5GVH=bHBDg83~{&Oq&whaHF1g(GB!+*x_M{i+VK`Ua>DsrZ=S&^cb#9y{|o>mHTO#< z=65X->~NHa)hUTb{v>p;XePi+0i_aG3GS@l8hbkXG9&ku?lx4-(_-`Wr6LR-v{O2a zhb|sP2u0W4H6$loK)KUJ{qx21Bfj){D-C`m_5CEx)Skhv^2$* zs1a9Zq>z?MOHA|B@9-;^ry9LpxdJZvwqVY08}EdX>)Dw1Y=ptEfQAv%UtaUlHpt)E?v`_YjsOSxaW3outxAI4Ls5v-sqA>Oi5B4s-2z3XI!e4LP}f_G0J0KylO zsaaJMiV}fZtjuDP?^3#s?1#vE-XA5u?^v5F zD)KcAUwVu4Ai(F;9K!hhJOe#H`}qK-7jk-ay$IHGf=zGM>pq^QsZrcv4ZVu6kL@gY2+d4i?1ikLV!1ieeRHm@4RBlfNhrL z;uDl%1lU(M)xX+Zshc-C{#MeMYtC(|V!lPK>pWN?^UUto@2eUiJm#W1;!2B~M_z?M zo(OX3G;#H z!6#swx>Y`GS0Lf4-23?ok9Un(+eks;I54xl%tPeA=DOe z@c;WAmI1$vE3YwXEKDg}?eUpg1biDU)$-#jtHuqc_R8n>%O7{jsJ(rZ^w!umU(HeJ zaQ4ju;XK>S*Bm61MJUc%#VNe8=r$P%4A;&qc# z@LbW9Eb_>wPZin?*VHXFdBf1X^&zVxtz0cs&$(z>r~^P@3v*KneLY!rw8^UYifIm_ zVLPWhLif)Fb)C2=8}I0bOslrIpd%k3!7N2*un#&1pOAmC+&ajapRZkAnju72Xb>9E z%ZTCQG{gOtEzmCD0mnKt0ziMh6-p+rn^WiTuhPA-QS%KyN566w!}6kV=~=6$ zcyo8;z_1GJdEL$9_#`HG=}T1bFsBohQ}6PuHHOFoL5L(NUBMkx1-^h;=aq?KXC*od znpWSeZ_Q27yv(ukCn_-Zncfd>s&CqWei?m3RK$XeDtq&wFx(|cDfo0`u9!HN6s1#^ z&^9YjC#9S1%<_nI1uu6_cwEa9-?B`=I6_y=A4+f;RXvAS1FX5;=&MSX!S>T8gmn0VYuJPX#Seg z-L`@gvrnnx1dExC1?<;;l}>H2U&EB6?H>rFw-fa)_g5h$bed62z6lnMIg?thAZ97}Fh_JHE6Uw2rq4 zoMeM5Q4M7~VPL0VD}&PwF5{1_&M;U@JJpg*yr1X@Q(imde&ZL&$F;|IGMXj#KoaVK2Vald zVV28LMBsqyr4n4ui}K5noO2!?TRv-2z`J1?An>q%n#j71 zBWY8$^h7$`*ecCZK>rH@?si~;m@*U2Hn&ka`>5WUE5@YO(#=w@iIwL{obA)j zuO^)?Teu-Llzr=q#I^5LR#A5B*<+!ziu|7*!h?U#T_KV^Xtut*6z~m|))b!#r)-QJ}cHT|- z<8QLkwkohuqOtMslAx93TCCSVf!zhsuvXH$$a>^F^E0L&zlb5SJpk#+VohwfMa{nP z1n8{9*f*LHrIS5gD2#EJC1RbegD$6~TLgzGLhE7vJP@v1v8!a8SOgrVF#C`o^r+r< z;LG%R3%MevHSi&6%kQAJFWZxThq?g?Z^ zWOYwuj1BVE6D^gDvok%Mn#gjE?qDbJx;b8yf|4$8O`c#=(~-So?JwnULieZf+*@x- zUPHoKQ!yzeWpQlZ8YkTgC?K_#)A95nn@M@OyXYQjDCx!|hxs|jV_c-3?PI|FFAT=X^{9MIckt0WD5d>Tptt{`iO&7xcqM9WYKZrTnUwi(%o19DzHC1 zEwftF#iBY`Z31*5z&dtS>XXlD<9jM~;vY8W)x%C)2bZjU8&TFUKsr&E!WuG3l-I^8 z>}uZ7Ka&A{PHX1oD5eW#Z)CdHw&@C-QHn!CC*Sj-VYCDW}s78XUEJyUPQv MuB%4AYW?6p0IXsl3IG5A literal 44335 zcmdqJ2UJsCw=Nt&@D;%ZC?dr|M|$rl3WVN!K)Q5kp$4!30s_)|FM-gcLqbyoq$45p zCPfHUx`dLu-^LgeocetjyA|*K;IS2%z z1S>t$27xXCha{lC$bdH_l7XpJ2Cs;2QP@I|33HxBHSnN zG6a$SeegJ#`0s<;a{mX0flpq^;C3Lk;GT9@azv!--HAxc9OTejfI7IiB_$;#JEVvX zY@d7FVPY`4? zNL@kex}!x`=;BKVTj?5wKL_*s<)sE1{Uq)%cq zw6!`u%F@OAj}_ASP7Bna#koFRdJ)`gig|2g@r##b@cWWVhT!n!!>Dq**#+}BDJ)MS zwRLH031(9l7|*D}cVFRz{-`GK7cW>nT}>toGLSBsmf36cmbe{cAO6+4=F37`=D-hK z6=qu~omj`aFW+lie$9W5-PsWqD?fZ^suCo5Q| zWM1QA-#Y&l?9%F$${4VTB|4vZ!B>#(3MuLkW};kMC5B&xk*v+)9yxOwx@peO`FYC8 zHgH%Lzvz6jrbjhzfHKGXx_-UG555?E`fJ534#4HSkl4vM(U#(QG{d@+ z;R~D=uLSR^=538#PT4@OUD9I_ZrF76hh{F)UE}fd&g>nAEj&8H1nb z1_hfUdi1RMb(Ypkcc}d&Vg~Ga$)tSW^D0sBq&KvdpFQy9JFOEU+<{nsPjHdN9~}|LoErOo0EE#Yogxs-VPc!*4S`l z!>BgKy$$+oouz71WbPTQiX0uYrKy1Pk3h6hi zXpB?08mTgGo-QaIuL>Z08@akTscoG0#SkeU%Pu$d*L5x z6phYdSng<`yBg{_Z$&A`QOHl3?$+B5q`3DE-CVm)FjE+piI5lo%MY7=BM6^j2pW%jU+rCtZSe zt;`&?+rp%x74eq*zDORD_iPF@^_~rB7e2|?g8Xug8U5LJ=Zunz7}08gCGX~boLSi- z1)(6=JJANUd%+J+WoXyX&&UB^D!4yeF?kaH3M`)|8VwEol=~F4+AV3d*l6Gzg*VhSTnf7Nk&>mdXXwzO+%kl{c|eux%a}0x@+Ts z1tsy_DscjW0d)J}T2r4&9&)%0mSKDQ24aUczMqK;>gkxkyNZ$$rdjM48~NQOGN+D? zB;yKNn6?c}#LB{#y0R8)F5#kqkaBUfGDMj?M79cPfoRiQ#+!*77!git5vS|lR4I=o z5|VAly$Ab7vXb6k3$x^CP#MX4SUIvO!doM(CD^<}|gs7DX?8yum} zs9C$7LlIOu1$BzwnAu->%%Kt?{D$bnfG7F;?YN*$oj7K@AD?8pJ-g~dsQo-L>7RGH z-%jS-I@9R=dC2jL&Kp0lDCPT?dWd6Wi~B^u_f#GXxAL}6q)Gr1rlGUCVVDealo&ho zp6_K%OsU8cTOMD$Rr&M!A$v!vPe*)NOvn8i3!RX~-A0$w7`(E?_MwmGfL^j!>)@b7 z{R|72pxZdh4GK=_fkbT-^W+wEAj7O;T-0f7v}dWV#1dtzn#v5XS$#_Pg7uFtahlKw z7F;zeQRq%nXh{&$0>%3oBv^bor}$<#0mBA(Q-**zHH^R!^_c%RKGui@!XVCBBc@OFoTZc;6j!J|kn&&xefS)DFi!{B&gF z`?KG`??h-)I((59jUSLFYG;mA@yp8M1!r^aveJO6AtEq~Mh(CfJkj62b{gB zqY7`~pH%tGV6_2mPHuJGtaOuG-n@d%-P^4hWi1{3*cIbCoUk4vV(f?kb=a{}B~D4k z1Xx2dsDD^Tk4RdI+dSEOa)aGc=}xO*VWKe60GASd<&{n$9xkm-gtLk%2_;s*UDn7y zj5qq*aOJ$?NPX8QU=w+H$Ra&|g|vUsIs0PXW4gJ3ICvoW!H$gq$M1Cq8&g;&Gl#xO z{GWSrn8qb7szteLr1GTq75+k@)M;aMB8h{q03pITq^9FII^39y7@fL!Nrx)nz8c|G zF;o&RZa?*%Iw`^D*#ZOAp6BYj=D{JKvln}w=YWwS?v4mzh+q~zp-yoZUIrcQnfLiX zob@{iXzb|3_f-}KZ?R3zY@b{ar;0WD<>uDFnustOz)K1-l@$hVTDjHL0@M_t+73G( z6H{}609t>om^Jdg`W6jE4;A0UuxRj{G=%2kv+TY$7GSLuOsndkhs0&)L2La z%~FXjn%{9ABQ@foDUuwe<_AX7OmP_pqN!EO?OD9Xh-XDipCbih^p}TC3Nf)aDT-}- z?5r7TQ>XUZDKUY|=&m{{Xoot`%s^mfIbeP~Zxj(VXJ4!#w`^}EaX zgvXqHvY^O+o3WAVSvLQZo=Xh(&ZXUl=f!^~-@1pJMajBdwslK}6VX$4ALcjQJJ2#Q zy-3NG-FC#9uFfZ?Yy}-|7Ut;4^9~d8)%272gup-K)x*T`av5R2~^Lb=Osq@rG%i^-Q7C1U=H$*JEC?-pjD~nCA*=@h`5{i&TNRAN^uq z9!fenaDXUXp0<-RGg-u}iej*D^z^1yW7cCyaq*H-1hl)k=k!TfA%?LLo<5jZyROk;jcx-}UZ z(_IdHDugv;zNH7%FX}SqLuRLvz;6?Bvi%xzf9Ld%nMFWilj;4d+YWBOl`#k3I3CN| zs%B^i(lO~D=4+4-67Baem3mP$*3G29v2^`-=4d(J0k-%3YvfU0^#E3TA%up!`BUEb zkd%e0RKT zq@z0=x6@y*ZmRKXMv+sH4V4?`>s2;Gzobm#&&LYJfh?px@&xPW z*`>)q*?llH9pj)PKe3qrLQA98XvEK4lcX=}$sjkEU)vSeoSy*+`$@f- zj7rG1XAN4c+(F(s?O^eqE!<82MKsr+oE<=7FM_R+^a7Szz!}aT40Tg^!Y1t(D3;Vc zI45rNOGfEDoVXn;8KtKO0xgVI`@4V6Ja-X>K5IEKqyP69s5GcdgNXPCQQzVz|>%k)bZ^GFkA_>Ma2+4Q80yBx&gMsLcyWCf1OpgZ==} z7etT$#-IQ9gVui!QT>^~|0EJ`w}%qj<)z6P_Wd!oEhZ$-7B0w6-I$qXl2KT=Qb_kx zO;D17;#M6cH^S9PkKL)|Z*#NBhcuYV;zZwm5%+B?BfsTG(3 zH>XewT3a@^q9!cn`hlmHrbvv2yQX|Bb7!8wn?Q)k=67iih15(+ve#3gx9fgS>uP`G z)oL2;A!$3MOlg7{2GY;vunII|%@0&G&SnXWvt1YIrc; zrjt@L2k(ZlfX;up>(zW+kWKC2@C^u`r@UX%T7{{88w3VGHZXcQu1LQ|2bg}l;-3Te zRy-!|o_YVMom}>qz%={jPnKlFvV#ufRhU`ty~Qt0(5u%yv$Tc3e)5ny+8Fu=2v;xf zT?T>p_!f!UGN7SOv*KIOPLe<%cpmLGT=_F4|50w_>Z^$YV3nNm@(m}j3?Pu0$>bIR zn{`~Ay_-zUxkC+7t$&rG=oQ&ZK$PZmu@+E?_MF<|4ie`O~ro|>#ST^L>NTcm_ z0E}OrZc;Fmcv9>9q>8hW6XVMEv&TY3x(KBRzf%m*1V3pSC1YS-)}iaS6Ya4R89Khb za@nMBA2`qNMpvW+g_G~?*V;_0*XR(FkrMJ$;O6W~-y&^1>jw|T4|NmgfmK*%Qp&6e z-mkg*_IR}Zkh?I7flV>+a}~5w17HIj*LHRiy+0>%HXq-lk*?Af7sYE2r`vMuNyYlf ze)PD*cT$Ny^m}4XIMY;(dAh_@cUA8o>4e|6Of}cAQX=pc+F#2LTJQ5WI?dtg_rjJ- zYJF0Q)Ut9Y)43$3jn9c@12zPl=T9mEPc~3qea^Du40u=!;`%rN_PK7iYG}wFYmZdf z8MNfh&%owOq@UzuuicZ|x$yf|=@FnF)#r{4)y`%_NI_v9%=8AIBi{N|uoh1`I_e(H zJb>)_l|zLUfy`@t-HXW{D;Wju4%~H#uQ2Q0yGy~76=|npZ%^LZWR@GX!JMv^HR&Na z9reoccB<9OT=!OwNct0b8x@sgz-YaV+o1r7aJ39(6t|ou(6Voc`|1wX{)NGi1m%fw zkb_u_XJjVK0qz>?5OGu^Z;C zTCy!$mwN|##?E7;QnmdJl1-)5?#)jjl!Q3J0u=ThozrQ;R=pguiaD|bGci^;VWMop zH*z*qU_h!oCb=~(rfy;xv3!1Na`>y3*txCD5a2gj&D@v^k1ARP1mt6MaWoNZF5hUC zshN^KRZ@}N9m+U~D;P$OQ_nQ2M|3V@krel{X!RyWW*u-#5Q#Hvh=cED?pJ?1NSdFj zC}2tJcTe4u8}5KMp@rsRX5V{BA~sK7%M|QR z@?<9eP>pboq9ed5Vt)Ccsqu$kx*uK#;zjcJZP!B5auobB=~g@(++ETHGDW0~Xv9eE z$PeaUzr{$Hp2ilbGxCCa`+wQ@vnc@PizsLmuPNf<6;+g}RNPvG@A*dz-CC0*#8i2d1wf;%;YOYjy?BX)?32&<6;}&$ zY?nR~6rS18G)sfbi}R}Z8$Xnwk0_ks0Y^qOE7wfdHcPls)?Fy2pJ~ZQMof-hc^f9p zW&mU|9LBzK-w|&G&dMF8tJEqyhLURv9&?QSMYe3-WU64IbU~v5j>`z?z|o`cPT$sE z8}M?crs*>>Mbz%ga-@&L+Z|`lMI-l@ABfRZa3A$r#4Fe#bsN~5mbiI#u}9KsnUz+M zqjId__&kg&9Y8#OiyzG+RhrXeNAoG{7AZBVWv;#L4^^Xy=w3o@$zE__8^@Qv3mZVj zP9!8ZCft+D`oBVw<@kyZgbb9o;;b8{g+2V5%;rBC>9EC&7e#EP@!P~@3}#)m4^I8# zO9&^u{*OF9Rh(F#=)Q_VD-TKYJHFB942)@6zndP=Cy!fcltAJ#M6fEW)@!ZjE z`x?$`=~ebfQ)lRtuYw!eJub-}zyG4))nN4T2heYy`L-b*o_T*7{`yh}ci6%xsxF*?Y%j6y{-GF z5N!a#8UVAUp+|b~t2O{KXH%K~{sH8-WupGrC85guZq2OJ=*F^VRi*XZZj?d=ec#Tl zw-{Q*9?G``R)VMLItaT6Cix(MjhZjA0fq}2a^8<42Z@-6HYY<07fMSL-44Ct3Jjgq z{@fG7dBY?^RJd2#2I<6;{AFib!a_=&8(4B^e|Qy3iK>-r$uF59v>i|L?Kk7uO=U@a!HH4 zzHKNFK&6)%eU%^eD(mtwYqYUIiU*JAR)~ zO>S0C4{U2Nx?|m>o3gE`^Hm8L$pQ%hq6w$ac~fl=jBb+QspR(&Bad9BlU7jR%SmI& zj=kx`#5A$Rd4`sEr%wFlb@B4KjE}jtWqwW_R?*?uq7bxs2QJ2M@J=S!>Z9J z7u1O7MQ+)77hinS;y#%<`~z(r2K((1rLuXcPOn0rL;%d&c5bgeH_u_uWJmr-S(BgW zQm+RLPT9LY&fx~x^Sbb>`g-=+vIyCvRklt7R7xKl7`=Q^oRopyr%D0U02hD9uw{J$ zsB$d25x6yGUtVz$`TKJ-1zq^_%*7~5fv4fZ7Z-N;q=VFwuby{IQO52~%;}KNqGQ*F zCv#=lwbB*_kJG(YPY0yyXX_fCdvB>x%t(&yp*BUNU*+fl=y+>ank_Q?t~RiZb~DHh zw?11aoXUxQx71xnVvGCS&^F>|Vq_m1=zTgeh)S?wd5+tah2d_!)#!KubfL5AfqvNImj@iBLV!Z*I(mG=^&N6Wg( zBDg6nfNV|mcoSi8Fojbitfsc+LYPg@U^DJ!%Zl4({KxP3XUBhex1|SFA64i#f5J7k zy5;$_D+gAgz{i`8-&e!z)|eD+31y+Rf|%@r2P#3Sh9bXYy*aDx8YVf6vIfMy3*H;f ze{j8-#oug4r@!oRV6DDl>sOqnlF1Rh?#Wtp{N=2b-_igszL@emc}#;u52#ydA}H(Z zMX_8b-i4cy%1?q8y-Ab^ zwMIQyyiFwNbNzb&JSSuiSmlC1a(HXC%m+b_D`>B~Y)}hRoLITpsAXC}IqjHT)DAm_ zijsQjRz8mDiXwQvs)E3ruOx*Vgj7`eR0h;Z-#!D1m)1&5`r};G^=7heaPh?K%-k={ zs{a5%Bd!4kdg^ex1}E*>s?VFAWTbZL6#{+mlI0>-pfGs1$CfrB{*Ot-rmOz00{12xA5iSDz24uYNH2S2bk5V269gy7LnV&6L0qgKZ)B zo`-;LO1eFv?AiY8U!&%X-3;-j-pAQRap|ob;~xWR(04umM$P;aGY9LJ{W=_6CI25S z08)ZIy_-$EI5xnks`x{W`S@*r&!G%0Tf4VJ+S9{%w}aA^$*Whu-UKkrHgQ`^4-zlX zg5~Vb{|oSWy{*#|?T|S`u59!J_<$`?t8Ol~_{J2~BfX&=)$E))iKUQuOtkj7PjBGX zTm0*#SIUg$i^mZ)3NS0KxA+*K3akx&Qoo*V4EPlYlv4bsm<%PulYF(W=~?|$3jAH8 zb2kA1&^au(;-fy}gR8|e9Kyf$tCNthQ%4K@#-{)U=_Cyh=moH{nX5~7RKH%Xou;|| zn-GPIu5^F=?0;Jv5FDcWm|Y)$n7|Sm10d?Ry)nt>aQ*VYflZ;{Ct-x0hl*F1P?{T1 zC!wt+-#Li{il0gTI3OmT5Wse|`YY!aU|Zg7j7#DdRLYX(G=1u*|Ms!D_TY)8`7*K zQ^~fHQn7uO?Vp&HRpbg=xeD&a?|kmYOpKP9w0fXRB<=5$6860ynT2GaJTS!DkBJ*N z^ecT(#?fRC=3fP{U=U+w`E}z*enk>F#SaF!UTut1?E!^14e_GV(z#;2P;^DN9W^t9 zd3BQ+CO5?_1LCu;PA7H+unPcF%Qa*l%+GVj`S*HG3JBQL)-!if`mb?J)>M00Piic; zSZB?kd6OvQUnd)sU|aEti@P$NUWvy`h3@77;l#Ysm0hTd(tV%pJyWeaHe&*3$>%e!%M%(pO-{zneI z1-m3c)pAS(CZ>}D`Vf73e`s|HGOGlI6tM@J8eXDbdk(2^b<*e65_ zLg{hoMOrd&5qf9zg`94XbV}pLb^E(=r{qMPHfxK*VZuk9oP^pb7`OQT17Na4V_3S( zFU3Tl)>?MT9inE-PEGBam?A`SWRi<>+kjtGjsECv}-h)Jwz)cpZ*<s{4C51j+2sp zOu}bbb;LvgJ1FNZ{TVsV)$D;{?(y%$z@j%0&i)~Jm@w<1er=$196r-!%I9VsZL8vFN&SZGO#}T(Q&(Fo=y*9Vv27Ot(x8h zfR1VXMW@$q4}ZM?EiFsLD$Q2<&5J}7o^NvFo+y_ruR;Fc-3Q<_Ga0Sem%8bkb22>8 zXGY+Wjkvt0&-1i|MMRD{ir!9VR_xvh&~|l}KC&ZFQC$I+2?7D8Uq71?!uWX06(ep2 z=b?+^0VCZSHF6tsyZsw0QfHiv+JWL;$YLm9P*?=^BeoWcco>tlwr3~pEmrJH>aueD z$r>aEks!mpHn`) zdi_=A#}kY0tYHCf+us4ly>T?V5QD#$Su`&|f3u0NaIPfA+deg0)d6)`BbmY3+ctvj zh=nTNw3w+|veV2f(9@@2;ffAG;!xLFSQ_eU6Ypu`Pn44{MwF6!@$&5)Y=?vpWA#Ui znBg}M=*06>H|7F18hsihrLkUq#*1&bX~_>cib}CMtn2NcIWbJmno^A8gR}lZUVHBX zv#I!Q5b*EO+~^rggsja?T+>{CHwe8wN+%Vt}@JNy_!jflOF=B?}tZp zeF9DgXfec;T;({l-TsGXFIom8yNbfkoKS;S-^T)LexbB08Et9l#+mrsa4TEN0IR=( zZQG*6C9}XM5zm&h_*JSWm$RU5i(+WJ2A2qtR1^=_0sA<{e_#ctU3uZ5fp+VToQ)pL zj+6?=_btW&sO3CjWB5k6<8v>$abVfM{wRRJA*sk4GX2gk$-2e2Fy^dEVV&jg76tqp zaNAwn7MsTC9auKBij;52fJwM?HSbWtk0w~)6esfs&KPXJYI4N zeoer--a)62@PT!3aNGJ1*EvIUy=tmgMlrs0Qn-c9N%EJdZ_q%Jf~3^)@# zxp?;x>L?Y1+k3@!Dc#aGp_{2jE%pAqkenn%MzQV2M{NtgvzOd}VjqrX{K4Ev*#gpF zrOESkbFw*$9k}G7Ka|VZiyfo$1(XANMF%TtArAl$9j+7AEfLzs+Tw3h0Hn_ zQE&`9oKbDr(^BI8-q`Bvl9zYn;_+-YIj4|r90NNw@r0Ea;6+#s;ttro@fLY6g^Hrm z8vy3<3NCEOG=1iFq&=2*dlV@;uS~bRS*dz4B4+4iXm4-d+tahIqiP_Mt_Bo~$B!U8 zh}xCHd6aJp`6TFv5w zUId_yfzavY!J-Rg2vH;dIpv~tf-5FJ*(;^pejzitv11+i5lM@>f^6ZViY zorb*5KFB6<%sD_shc!CBv=3JUuyg7BHhI?og+Qz8|6kxjNXl>TRH^B^tsNsAChVlQIM)D@>diKD}{I#POL?xI)5VGsi&xT^;I}?mGLv zs!U6}p%jEXM%WlvI=@ySE0gnmHD+Ydu|n0)94OyYa?|E{geG%JbE~b!NUSbp)BoZp zZ1S@WZO?%?5#nGg?>=H#wPtr<9&$h16Tdq(Nj+AOTtSiae zQL;B9bdmub=+}_7c>Idf*Up?%91?+{*I({v>8`sx-ZI6))3i2yw$MV}x{LTw{}GUz zI0P*|d3Tv~kI(z;{K-)4-?>&NK&&cj3xfyO>E9l+He;P<)woUc1i<*c`5 z&s&)^*XdE>PtboZv9ty2(QP*26bEE1U>%8U;$h@oD)2wFKGdMc4xU9SmF5y<`-hH) z&VKo=17AM`e}2FyO6}kXXcAkCeWd1=5*!yi{arA0<$f!5@t2ixvs)@LlFeOq|KqgV9+homA@QHY|WiO)?}IBLEs@j`E~`X(K29zTA9 z1d@O+uC9`wC0`*lL7$41W&jfKV+U)CG1CY@oH#(0+jBlaXBEnQ0_zkK64%o4zkQp~ z{#n}O8S4Mg6l@)z`qTY77XFzyF1l8a|6RF+Q{c>|%-Fj4Wf2)zkJ5_wKp(Ch|;E z*yr$b@E=t7A60{|Jt^vY@aVQMATfxz8Oe!W;gh7KxbK~&127|#_8H&bINxkS`_KU@ z27TLO9CcLpfcjF|t$$D~R+@RB;kTqLM%u%?omPOh0Q&xUVUFysf2YwSSvGmSLp5q5 z90vg&!{Ya91pEKMS$4;D0<+Rd(XpvJNd7OB2?FeH8zq-z(~VijljMzcW{Z(G1c_uS zh#Pb~RBCE#n@2Zw`GUzk1X<*9pO9v`eCGv~02Q=iXIIR}izeuF`IJu;A2v>yN=e|7X?m|3!q!|6Rin=o|fi zL*MBCYx<`BpY%-}C*X1?;&(aw2ZSVP0OF$hTdbentVe@!{XYn^!I%G9^gy9Z=$)vE zr~U9RI{-$(GD(KI3d5C-kcCB_oNyDQmg zRM=XT_&G?{X9U8@@l7A5Q~F0)5HIXH$DZ9WxDW&qa~3(FhXQ}UgmS*UO&V-g`^>VM z|2Gq#NSF?HY|5nli{OwiT4eb1Ww3XZ6X2Tc1mVA(p@?P%6a{D>ChaMV&(uf=uKFKU z(X=z)v89Ywgo`_A0}RU+via+#Zt#*&9a+CR5$(Ymo7@gmND(;Z%XD03uhCKZG_BVh zP#1cBa-~MFN(i7;8XYaOvQmwFMj8PL0zpL&s3&kE??0eF-sSVr-JFAqa?VNH&&*xF zzV_238T+|Ai*Z<1mX-ob`0LexA_=akT`n&h)N(pFmXEZBY=M`?nCx|c-3)g$mQR9P z6@5-YQzlkC%T4{@MOMbnxzb5n<9>nL|EQQym$&7+3Zx2~72&=}#JBX3J0pwQ*^6;+ z_~j#2THrF`FFqDev}lBF&udw|4QB9JkgIa6$&7`21v0HWniEh!@i7qG;z|geDlrShPVYn`_^G`i-TYnI2+Zy+6Jq z$xqcgMx9p^m;!)t@n!_{&J={ci;*gErc-ZFhU)keHE37(Rr7z-jj%6db0sA*kocft zV6VJ^6DTe01C&gGa`Ik}*YBz^N8_h@H|B6n9WBwsp zpmcs^7}ZK~QTWwsNL&WqWz*y-U!rkcj}bK{ek-~Z(BnuOP>pWZ33K{yf2{Cn(ML^H zE~$^rVK5sqBO~5)@zLjtv#gMo=oLX)AK2Y9mAL;|%YyiSpk={Jc96b=fRGNn0J}v_ zUq0o!b{R07oR&OJH@vb&dhWu!vZE+_(`op9Vwh*Q|3F-UV+4$&+w&N(E})Pl4GDkJ z1{vv;pP5460*ia+$l@f5V+$zL>m6_j;c)~({)VPk6k>Y(q2yHQz=lX`VP(*X!udfx z6T2vz$+7I7wel7O;=U{79N<{`@Ov?H4`0CmjjQ9>2M(s4g4Z&HfZW&s%6b0~X*lNn zQ=}mYh%}J@pCXOHzeO6|RAh$cm+^7SK+!yo+W0u_&AoAORf-fOndmE3KDi0fL@lUU zB}}$OlRHK_!DpvTMJEQ!TI-hiK~rga?}#`U$PBM`a~b>IUzz#tO${Pz4~HJ?3@x<% zm$Wfd^$E#jQElnYWj`7CFH&rzYgfo22(Dr!+bo1?^)O31s(t1uMy=8WiMvhXn`ql$@9UKpQ~BRJ8hoD4XS`Iz zUr=0Zi8m=T$$|;W6@7+;AFg`S(a!Ff{;e4-HsC4+zWeyz6@jUzdzC)Q0B1u#wwf|H zQUCF&Yejs1vEksNc3~zSJlQNmYPPhEFIgruHvCLY4e{H4B`4~tGACUx3uyC@^%GoS zYIK=cU`JSvZfN`ppFS4yYK``qEG@Ev1RZZV0%C^saQQ$$>fvyq86%JpE-KZNCKjOT zs@q(;_{LO?PEY{r6GSE)SNrexKEVH%dLM?(2`lq>St;hr!^-Wnlw{9l!es*T7d?J? z9@EV`pVQSM!FCRcAqNX&5X}IJ!)7dh_NKs#-lo5 z%B%YHIClIUZ_dVDO5uwm+4$&VyI;I@^O+6*)9wiQ|M%{Q9nm6uw((hwAV{M1W8nD8 z)snWiK^*+wb_U?ealB{$Xp>+JQxlC+HO$P0`Oj^mt*1ei&OI6=pH2jpTQ)g?Zms{W5XrVe{I1Kc#wazrPIYc5#2 z76t(r=h4ss8lY9_D|OTOxU2r|r>BMRrdk~4kduc~S6@H$&1X&JErx0VK_RypL+M}N zbm+A7^WHq@@y-c;EeBXrl&7!I&h|E|v~trQKSXlgZF ziSjm&?6O5JdrcjjwhSQe_Z5Ee3`={c0E|tJ-ZIu*#)xu8zjRkm8$5Ko8{HbYc`A2^ z--E5-7Y7He&Kb@m|1%1cpnt0{L20Z8w_1_4gRtzxk00+jSjb++k5olnFp973(4VP< zQ=V_nW;bqBH}*Xa&i~OEcmRDX;}F@$BzVvbs#&jIU%bMbdrl8+Yo5pE8}Bu3 z#4iFag~>=o>ly?-6Pz5SfZsU3v<6YUxzN->B<Ru>4VcXJgD60|kVkR#-d?*&^(sx4)Ti|7Bd-^i-@>82%^j>5Q%F(F)M9rzWJ5*O zm3(B&Z*}jMv^mx29ntaY&w3-6$}zFLZcltfCaYI-dKHs1f$z()^S|xfP`|g9AOYxR zXK_0X8*KCVqKHt+Ef0T-@DN43nGbqw8 zP4@!sw-AJwEWi)VWp*3r&7R_evN`N}pDBI&@Z9-k0>3H^^-X%jGNN;%d@5|pM6#i_ zWvqdqr{d-byJB?BU-7^ABzcPaJKbM6RM>xZvD*eMNu3JS`&aqAmc zec>HdwfRu@+pr!pu5^vTw=3csE#p%r*Gdn}muhGdJ%_T!bd%rRe96uxB>x!@%Di+K zTN*0+PI~nxf63=7ZcPb8%4@xlz zlq-JsKH@T&NCFi;_lDl)g-RckanxI5$a*iPfOan&uUTUVD3Maf1Hlmrn4_<~x(3$d zmq2SP8K!W?OhJXql8$MPk@#W9dm{FOAF_$|0qy$V&jqlTSgjG% zfn4LeUy8{ypRWpN4^-U#A-iWs=CEUbc$G#mD*l-RsDGh;mK*8nnqI+>UJ=C9J%9&_ z%j#K0-}_u+obUZUhmg0lNn%)1iA_L@Vq@H(_c7d{N7q#*Vy;&*0aEmTe6m{=4WM7( zMRotr8>syfpeP``_=x`S79fynFz9|XMVOibbH=)W0>z_S`k_n9e%9B?ek#{+4c}Du zy31B5r>ImR#Q2pM6g+7pZ5ERMT{oHE@?E}`k@OsJF-T`%ki{cNu$$$fC zKlaSg!W_>6647*O7Z+vV`@;T5>^2Dl+PhKnAFVuH5Pf%(9s|uJB|Mg5$X(3!Lr*oi z+YJWQvGMfDN`?yU@V>|yr0a!!Nd*~LcYd@;#5^owzj_%ep$!=XKN`NN?Ij;6Af>*t zdIR{m7qnfA-2pp`0 z$7*8H{BI%5|C$r=y=&E6$J|kF0mh~s<8-{IXEdF%E)Z-H!65{VquG(&jvJXZJO;4A4xD(H>zR}tYl#E2ICYkT2} zS3ob^*`9-5)FEE#g^*tyJVS8t3lj%hY>p5&(DkZdfG=-ofHl0t+dtK==4;e?PLiLW zRKer@=H%`d7xw8F*SiF14_z%FUb^(&wd3`*mGX*_hI$6obzhUGp?mrU_TDD!C99;N zZ#HW7b!!n%pOH_ORfaoMCcxQLFo417%k{!<9Jca12V~(CbM>H2aJ60Wt9ft~ufwiqiT^z~l$?`$XAeedjT z3o0bfHq75Fl>JyX_U@G4{$Ouf4=~IiRuC2Ad&fLCPmiXz`A4bzsY*I6a8GrO!;g|N zd8-@5K>hjS^AVcPFax4XkE-4wzdEBUiV+Fz zH(PqxnqbJaL%$X@opNytymRB&@dP!{5}dw+?3RL^(@Ki7YHM{HEZ(Wf${Os^TeD_aXzr%>1s1(* zep=1kBWwjd=3gBZ0BbK`B9`%aADJh0Ani&wc3kjwwngB$EE)fPEoYM1PqyH3>maXk zb4rGrAyM?O)``-2*aRy$0(!VV@fhiA7tdI_XOG3EBC&$0$g*#x^PBc6#Y3@Kl~=#r z;jd+%FJ#(^V0mU21I3=#e}o?HhLSNOs_TK0!pzsQx>;VZaobi){*>}ncj0X7KwB0U<9cmk z4&7uoG-93|sGe+AD|ZbA34P!U^bPg$n)x{KlHIsW2r8RIjhMsTNqYkoI5T#SQc zKJ#7684u)Y_k}EjDL(DtfLiYb^x5{wYU#OaP?XpEE?b)0a20O6f6N(8kO3~yfNN>K zmHoJRfAnHGKm1VqDKN8lKj)a*)L`=FmGw(A?9}ud_ozaS0>v8dkX^ANm5VdP;jFMY zw4zDSUWR^V{JnI~9sBF0EY>d}R+{lO^b*o7-nM8)k%RW`tvyAGb2nF~r$G_jB5N{X zzaNE~6<>Xs(OrRVhN>|o7Ez#{Yv`X|KJ){@_<>P9&$0RCve~+r;`+cgTlMV6;9jL; zhc9;O=zHn)N9&?Nb51KCdXvVN#=e|*=o!rC{7kBU2Ru$TSSrfa9dwUJS#K zr_f6@0Uj+*A=zxleTvrNzct*+uD%bqvVa1k(RC+g0ploa?>yABc+c>G^*LIb=x~x z%o}iwdqKWuh;Ds&lDQM5W7*7a0d&(+A_0$r`JeCMc@1J4XYFU@Iw%7XcBd|IpXNVQlk=dzt7_P zoo>HF>pFAM=t!7c=|PzPx#~lhpI_mF;;zBs+bgK$TI1TL5}m{grJ0NN@Uh9eBV!Dx z1I)dOF(WD&G)(GN_&WZ4QN87S&_C^0>V$S<(wImhb!Xh_Sp5V|pXbmIE*_FPCIN3~ zs#%$jTH>igt<|c_`2uPtgRJ8ouoMj4;Xlx=Gmq)-#e_(2`%?=P)LfXA3ws4-X5W!C zyYu0tw(a9h#LjydBi*dkPZ`bA2jiJ>73Q$vysd#uW5|XfR2 zIbdRH{sKFPGu+~YrxEk{@64j*^EYz0oMx+3peP7cclO*y)7*U$1Fpe?ztS{A2$IPaq_?h+y{C{Kby`!4iwmp7C(IcYR zKv9ZHQRzsNuAAeOB9tA`MBvh%=AvC2EN>Bs@qzHu2ks1gkQUeJjzm;?D zz3-k^?(e-Z-e2$cV+;miv$MmVYwfk>{H*Vst0UZok3Vs4aE^)iD-&)hN$e&M6A}*7 zQ;~f$uslMK`Gw^{H8DgBa5>HVimYRe*Bd1LQP+rHzvNgfZb1wwh6ek{n-rbZd>8@7 z+JLLb?HHsvL^)8_==qdzXRsixhywj3gj~4fi`ZznKk3$!&_rY$ni@Q)uN><4yXT4h zuDmXEjNu4)(xzJz){J##6PjYyewg3d!J)%GAdm(MW@f8Ds#C9cEk>fpR!*%j+BDTJ zGk_~Z71%B*nm?5cMBocVj@*Pp$@_52ae8nE@QYDhwYCXdou2D6Ote3SnZ+siawcaN z__?=h8w5F0tr=E5w=b5~k&i1}vEnJy(^?4?6x;0e09M;|qFpigcFc4}jSdb6VabZn zeKvzgc497sF=${4+s80;(^A>LxHwvxtb$>Fk%T)c-OnP2U{lVc>o)7gCg7+$q zkR~?rsva)Y1mQcZZHP5#SMO!E)wfFu zzN|xu`Mp#MQij4NF<$Cx-eYX4v4~szo}BL~FC&UxXnA#9Mzh4ATibAvIBd&y4IsLmCK_ z9u_hBJRh6Jz_uG5_xGgRnsIrifn)*8K}7hIlsqfAS`fs4fH zeBk6VyuxUCgr;S+guVRBkLQT)%OYQX6qaPnP`uvhU8i|%rR|=7@t4XEWrUj4{-ZBC zEtjAgBH8n{1;xlup=Y1Hqh-6UFIjU-GE(XO5t?T{??tiSE=BNuX&sF=84(7gB0yu5US&_Yg;=2Tz4$eLs%p^;hh0kuz zacP%{HF#7GBxJ_L;y~HRdv6i~4`mQFEJKez-y@Pvv1pa$)WK6ElHHzPdqMiWxg%Rn0x34&ag+^0+TauE0iLuXL&7m zr~^3-FKjN-aBe=sgth5h^U6i0#XbJOnTrc!w($eiCa+UvAK!PUkfxu#9T%#{t!tlB z2?mvJg>riI$Y{;E7{%f|!nkW_zHWGU7k`~skaF_rT#KS|vMZ_M?+-YR)(&RPHu8(t zR23jWF3CH~(p1SV$I3hVTC@#qH_Ceu09WWjx;{RlIjdxH>&B@#O75qTRfkiLbRfs! z{39&3o3OVNnkUA2fOIK4ICIq?-=@>D)|hFBqyuUH*oG4Oqh|o#_uua!Kc##XuMN8V zz|zZJS^1;_=RG_pXO1;=98q?+QK~e`MYiRESq}XkRu0gSaO{)2*~oUD{g>%*t{6TI zy84{?kK;O~EW&}pnjw3}55h9aw~BesLchBejpz3<`Nc2%G{Olp0&P8EwZ0dLnMKXbFks1dWEFiA6(Oq{;hb7jdy_>H)p+ z5wSwgwf&_F0+5;qu;A6@+~Lc=9jgW;1UJ$r)%t!8Ye7a? z{}dzB7%6LjM+2P?V)jy1{#X;8S$#bnrLX<)^D$tK4SLOcLNjfwou{d`)_5yl z>s?2}a8RSLZ~Vb$&8GUTqoEJZMG1V@SPHx<;f#*2?sw#x@tcNk}kB0~pm*^C(7 z51Hu`hnC$bt2c{MAU5A1tu(}(m^Kv}PYzs|*z`0S99$^(6Uo~0UlfYZ)@GS`2Rzdx zN+?=UUs~raxYHrbJmnqY-b0MDLx0a)W&Hb=t7^!}>{FYNu^$sf)u-?Gbh;zHdGBcm zwz_D8MjaNqH3V>ov$xnG8Q*e0xos`hv7I$k{@@r0sB%rEtW7UYMQ-I71>{H(l+zwJK0U3^=L*Jpgb#>h*f z$Z%R#fOAG(DIm~%HOf_+JhMjs4~R5(fnKTV*`m?my7_M1K)ejEZuRM-Lhe(IYt9SN zz1k|;FKjh3vn3^5*IXP4`_$)SZDc3Ig@SHEE+?9JV_osO8qPrv*5oEZN=5*&J}H0= zy4wa@T8DBdZyTOC-wv3h<4G1{8PtdAAhMO5L=W5AK#DXa1Pcw!)XLl(6Tdx}Rjk?= zP`CNZF8ye_HuV|u^gfbaS)-ZPw>J2w9J7)>`~-Y}fEmiXd)j&3d$opOT;(S>ZYS)= zTyA)J`p^MII^ZO&pg(ywOn5Gy_LC=!VwFKrl*an|pQBc|BOk4MGJDltO=p91f$nJo zBk_!SbbNy^#shSxikd|LzSfD_wNZgPwy&;R^%mIxwS6(u(cvg7MVfcV>};f~ytO|C z%ZV3E2czzanq>0*S}F#vbizK};VxuAeAFDWg4yy84n4iR)fRrC@i_)2ClMK3SFBP{ zGFl*`@H~MFVlb~!_iq?VL1MX9RT^5QhOcc~x1(V#PV_;U1z3gGtWAx(qS7fPdJwBP z`7y(CLkR*bZ!=0`TnyT-r!w$;Ij*`qUsD_cjdh0DZxKN`6-RTVu|mUwf*7xi8bDBY zvUW3i<)DcY&D9!NZcpLXmj@P0T^*;=SYG|+>bhvI14z?J5|IVCXdr=OQ9i3{qUAI*`Y*5&60wq2-0v?RdnYIf>yl00SO_RW|$y7T{f!^E=vySx|CFYc8u)?ub zxU`9pT&NcGslau`l`Ah((iZxcmz!M2`~R6grE)FDb0&V}9>AW3eeFNxeI#mY#5)C3 zwwyB%Z&AC{iF={z^+Cb4`B1AKV(;+W0S$%DDY#n>6m%f2`NlJ_q)0kHmJ>fQCr5zIP=P3J7nDig8;F|-mz<|h@I>%+fuyknw7-n++yuW(sR&x#doC_q&29 z`?(mxB$%ww6b+qlf%tUNO-|d{uurYS-=Aw3m}NXRukOhO@RLEYzNcN%@{Xj0G=%Tx#3` zy%~{%Ly83S`}Kf7ji%2R*b zZSVbJ(8dXw9l~iDV)~GmPgs?AhhWf7Sn&>s)O{)SD>WS5mYN;sQ*2$^i|NLw0-*`mn25Cc_OGPnD@| zs@E-cJd~Yf>G*EG@w=(#Vy6TTnf?;h9hoL11p`QfnWW6sq))FvBPAgjrvziUdy2N( zKr-x&9q*UxgSs6xwHKZ36CK-~qzW_*u~7W>I7dee%{3L{)-bAf1e~z)zOx^OoCg&v zH@&*c$gU$^Z#wcTwCx=juU;V>$b*SXX9~x=P+m6BeD7gFz*pi`Q8)1@ncQ z@bf{G!S`^XT5R{INZV(#8}G+!-WD*JS|a23kNgR06I-)WJM5N`J*R`hXcEY;%cdtj znDkvicW80!{s-(fFlQS=z&q=DU(3#aqK6tEM2L#Ab@`5+cTwP)w$}$N+l#U{r`=|t)UW%7tNX5$)>?CZk*n! zU}EmxSl$SyO!c0zfvu2u11+Nl%8>@}`M=^gFcUnow^P@9CIG1T6$(}*TdCO6mAUVG z4+h!(!KeDw(D^qGE@iq~9uTCBVH{Zg*@i|dN)kOYTyDXkhobez_d<(G{jnJdt%eu#Fx)i zFTdiBtjCD6gOh`dZ2QPT(a0og142iZeR zPZxeUko^nT^TOcqhWl+BgC5sdsB3ZIE@Qr&*RGyhYK&hEN-@=*Xo|YfQcuFqCT6dH5 zd9RvFyLHIF`Vw1a)BCBT-Op5$X)y}ttFra%80~!l(lQ%yhJecY^1H}O7ku{#=q|1= z=1_w#c&|zRrv6KB*>aBWF91u#oWE0*-&>9-bB@YmZxFowYrA0^_7SUa7#b9?)<~=I z&5Z%sBvdZxvy?i1=J|MbwtVY}I?{AJLk3{W)80g|ioeT9| zEUOVq%SjiVU34bB-D!V5Bz~0%+P%eeuzZqk+O+&-Et%^io!ZXlGa4ikGB?dJ*MhF) z?DNxCCyS40N-(SZdtplVfm8w9CPm9dJ#==!_b{A!J4nF+!JRBg2Sm zD6qS;uQYI3-W(i`i*CCyy4uyatEMA{sJUs7kG!FKjpm*Zc3ygCDNRIrgyjcp{cfRv z#)j(yy5zP>A+ln*^GL3gX#R3qU#~h)6NHo)LTQ2r>FD!Ne#LX`0bB$*P`b} zX+xSn(LI~DI7!-=*#TKA9hG!6K~|^k1(sL=yaR~KeAhY7B%*S={~Vkz>cl4?Eb%djF`RiWhPHWodFHvEL0{*_>wdj! z|35ecw)|(M*gs7B$BTb${r_vHd@MkQ%piKFifU)s%NT5Dj|py3nAjb2C_`Vw~C{O%1*SgAn~YCs`(dl>1T(Dqj9eay-^{&uXQD|r>y1)7ux1p=kMtjJd}=aYhE9nfpY5>j?n31W1PtE zQ>?Fz5<=TBm>j76nTGZ+AL0Mdi9*hOv5f_MZ>Kl3?dCRKjxSEB<%nE$6-gIDD_kPX z^G9^6177yqZz`@ZT5(p?nW5c13(9&sdHfK5DoawulCT~QR)^W|16wh7#p61 z>W}y5`VaO2$>ZhgmoMB4gq1mAz+IJ=?Gy_*0Wy7`v|IDiSQm?ZKo9Q~g=K-Yy`|N6 zcI5pc!JD^1SY8PN@}do;X)W*DoU}(;&Z^a#c-?PSlL7H$&GkYlDNUw&r^z)IpGaWn z>frlXWw&=6NZB{^&2+M%`HSCdRT}$Z+0)Yt!Zvl%GqE`N-30e#hg(7*{2A@ok=aQ* zz*{a~fnWPiWLCNNm!*Dms&cSg=g^51IYOO$|AN(a^N`e2_A|d4sB*>rZ;~{*vgso1 zyaFh{JSTn05-jYE%sz-QHHZYB;d2ehJ!TcdiyUO(i*LW`temgaK&8NQENeAfQXgUB z19o}_@0?%v%gnixFd8gais~_G z7#|A?rgCK&pQeIwn0L7ga=~D7f1ISJYmy1LiSINiBqMk|&#WUOXoCYunmQ3(@53W~ znf~p`Yt0>m{q5W3paK{hRR|Hz#|SHv>SxgheM`>pQooeriXL%79l zuHJ!{e3|M%X6D(Kkr(Catb2g4b<;EC$;H1^hXaT;hUkSj@iM|IpadOeo5y`bgIKw-fcI3Wly z69=J21rBr<$0z?Q>a^!;wT_P_ga1xXz6hc1d>BlXp~2&0*U_)~(()xGoY&B<?qr2=;?$@JBRoNlnjyDww1OqaIjJw%BP@Rhg1zKhp@@icDv&WY=i{Y z(3s!$7ECHtA1gg+MuVEctNU~y?4GRUEc}_e0%REQroxBznevLvF@|K!tob4Sk2?=f z4EiZ}*C6SVzjdYZoG7cqExg>X#EVex4wAs+v{JwXYO%kW%;{<$2cl@8uowjK9CNfg z-y}Qf#ZA)aO~UtyKsmz|%)nX`zOZ|qLvi_E>zoYD4_<_%*+;(`YtX6|h-hfbwyySklHQ| zfd?_cqT)b-#Y4G!Zepu9uEb!pBO^Oozv<@G`u-{OZqf-xj@OSFVUyJk--V--^|=NL zPEbIt;SAK1-U_1%q!s??p#Y_?X-$w$0>r;^s8#Q@PD;NO2r!IwCJ38>Dn!747?q9A zL^j_Y=Bw?=zS_|yU!_lM1+6j2cly4#&*N&Klic?gbauh%JpODWzuWUOcSWvLLh~NIicW5`3m{y$k=?{> zfgYgf6~GQH;{x&N!6ZrY5(xxx1*`a}iJ-Tgl!(vtA=f?r!FE!%b*jf2*tM+^s%*4l zHFw6u#bq>POr(LL?wlVso^?`u;nzH=T)!#Fm}j7%;PrJm-8syqj{NQ$%N=;J9g{7v zOett$KD`nv2A<^jn)MOxhRL#sIW4^Rgl#3l31<{wwPm2Or|uLn0t(O+7hW^(6$|Gz zoBWXdCD6t;pYQB%JVU|CwvUndnkj|h2J(5js*wqjNJ2tNM#X?!isa#2vpx~K?3Y9t~DA7i63P!#r8d z0moM%02?lMmHV(fYA=nxO3B&ERS(a2pE|vAu2Y@teq&_w)WT(j`;S}7kyptYk3TpD zKda`Y#4vUnJmv2w=-}I)QQ&TK*-knv#q*J5B)v0RDXRFZUw}E1p6k5;E8(f?-crN=P7;=su`*liz06iFc(5@9r8#nke-x6mcHL4_of z4W^Sr3s)0@JmvGBOvb~QyO^8#IK%vt-`wo8l#=f3cbpvu{*tYFDwiWiOu~DJgg&0K z#VIb{QPZWK>5)&ye?~1Onokt9A3fpSDsH%oQvkE)7PePMaqdWu#?Qxg;XJb9r!^23 z*)OlRQ%wojE|9WU5H^0B7Xp5OgW?l?2p^k}(C*Th#%bxTHixyH(4Fv#3A4i!AmVP< z72VDfD!D3;Cd4HLNMEFt1>=rqHL#y0EAmGsYPPL44hB+(sDmJUUW)LG{>5|0$P@|z z^F~6l^SAchJyOP@Nx3J_09N@$H50t`x={&ziHXd!$?yj>gfxG3vevc8AJevHE?hnA zH>p^hXPnr$JIb#!IjggVf6ZQ<=`0*H+v#b%vmV+O&@A`?tl#n+c;-Q%a|qgvS_TG# z?PpDAOkqyGiS56t77lq6qJ-G$=G=cf_Pg=!pv-nF9;O&dXLWpXDv5D-6`jdJN;Nq6 z1r5@yBF-|l8?5-5+DBYc2)VF9w3uhTuw(WXYs>X4VF>uc6_|c z8FHmBiTl=?2QOy6{3Y#+TlPn6^8B-%25gx1W{Blze{!IhmuAdEkbo*I;+9LD9e ze+9o;R~vg1))dxj&$J(Vj4ZSy7#r7YeQ1UT*nWwFMMNm5w_CAy<#iujMIUY96PMFmE>72vUCsr`V(2J=uAbRXK=G6eS^O>q^1I&ra;ur6=IY$gw&_ia!|8+x z2r9H~M841Sa2hQzbVxy;wdQWw_~toU{eerjyIWNULJ#MM>4kwB$Y?R%kfRf2&2g zgZU5BP_y0s{QCcdgbD=S)Gzgx3>Y9imM zt6_mNuT8gl2kT4>K$L3{Awc8aXgbL&vafX}72*N4D!=_W9!S9ecW7DjD!ePC7A3Iu zHz62E?E=ICK#mrdPv0CX5#C$v)NDYIy7+_n&9^V}3ikXG4Py^tsnWtzK4CzP#aTP} zxdvnkekh#2*^ppwR54O&@aV9an((+GMBVcF|0S#Pk29!=mn|XxlindTszpflEIX85g`xP5Vj#dnp+hVG6sXd1P9yQ+;=( z;=q7-AQX%M1FAj~@7~}A6$SAlE&ZG{caI1PxD^A!0mLv!a{M+(tzu9EF~CCrGx{?* zpwdOy(_qvGGE|3^U4S`So>={tIO7yI_2TJw|^dt~KaD&cD;4+71L|c8;`2`@lrt&+X`mcdr~#srX+`^s?&z z&oP4;-P!*MX6U%e9hTHHK4q}J#F}uC>G|;XZQw5suh;lwnp4{|8iHTmHJ>a_b*b0) zCGX0khlXzgt@k8B{zE|~vyYln{XYVg=Dq?g|Fx9(<$ir`GdWZL zJ|lXgb~kAv1INbol~af*|cP4izwN%vck>oH1dS z$(ff2)OyFkUb9L3%=LXn{gWtV^EgqgfU0&PG8u9MjT2a?R)d?0 z+WK;MY6`@0(V3MhlZD>QS!#J7;hcn*b&`R&?27aa`m0iaE*PRnA2r|?*KpWRMqXRJ zJaPsLg9C%2-h*~`yp3WFfz&+l2}tuZzw}PX^0{`in!*^9TEL&6;rbeGPDAqztd=4w zI>@D>l_|GaDB?Sz60hO=@r9waxOaOD`n z)Ufv>x9E>M;g`GT2C7%r@+qh$nV9lQ-d_sjp!H@O=Up)Y0kzwZr76ouo7=p~CoU?T z*rEH*AYJx)?(N$4>$=itPAzDB)$MjvUXt9xDwE1y9E@+(4Mre{WuP`dfGn4Who z=`$PY&kdFI;9hI_7hb+(-1uPg_By_62-d)PHB&dcNh35<qf=FdSaY~&NvCUBxU%X+WHUXtv3`*7Zf zqwBXCq9Cj`FsW(f)m*Q=of=$qo!EQQCJQB>*N?oZ1haS-#zIq|4dkPdYC131n!|&hCWHQDTuisc>ccB)7WUkITbinTmEKHsdGr zIvK6~oI6<-<4z1aR@-C-?c-?(Meozn173QOm%b-(EzljL_)m=nSZobf1@Ia2>w|q% z59G@Q!G1@en6(3bsS9ZeU+j5*8O1Dxnx7p4%+rEIpj_Y+?w9_}=Gvr2@vVb@VNhiAC&$Czj6)s=Psz ze*f8JXLUjlyY0D9Sf*0!7^X;H7Nl;g_3*Pe>>Za>7vEz@0m?<|VQi8_mzfc_656`H zSI#`Fue{%rbK(%sVa>3&eAR}*DC|=UL&)IL7;olkm>6eY(IR@84Ucp{txpa9p!iz0 z6x^Fel0S1Wj1I9Z&9vT!7_JR2*qG6=7G09P^If`L-FJ&)t!WF^bGB354PiFYsNZR= zQwuvp4MdX~%^;p=rbF1Jc@Fb+cxKX=2Is{y-D@7U`hqH;2yb_i;Lw(k(~ns?&uagb zGXf@J=4U$k?~lcIW#LU-mYTZjEy?>i0p<53mM+}0WgPP1vrw(fKxoOBEmbW?pL#>2 zlx?$9Buy7J52u(ly0FzY;JRlNksBo;!R{YTIMP-zt}DMIgWs61Gt~CoaZa5e94`O3 zZmUCU)z&b39&9RZ)upE|mni>hx2(|=f+8<$9POOnn1485o#stTJvIwZYaz9J`w0Z|1=JRLL%h$1o3$?JXOEd=J6zL6T#;Nc`r=Ct77t z&Fb*0f25eLVEyi%Zf7JOduJqUfn(gcE?1ZP5P#*@+nnUvJ;4Yw$E%9S5;5;a5qN*v zf!+vuD2});YTxoLD0fp{QvLK&gR9STC{)ie`c>6>y5jT^I**=OkEJ}5qKfVTTAEgl zclbBO7lVD$X$?_Y@c8Er>QD_}Bi!h21)Obdli!%Pby;sa3KLcuGjW~fu0}p_)%fYW zj_<@!8fvJx!8h_sYOW#JEeJWCpDp6mszssL789>G8kM?HF+TC z^z|Sw)q7#N<&DDK=-bq9ZXKl$=QK(nboQNkK9zRLi=qhYA4+jZ(Bx$nHtW9`@|~>50q?L~s<`7i z=3Wqs{IvPZ`J)2O-u??g$UAI&pT$x*R7RX{y2zsz!X_eGyeYrnl4@W`+>R*isQS>K zw;bFoZFTS|$*@bxD*wBia+G9{vTdDj;Iqo213SiVW<~xhgzNQyt&IQ2V=7UABXO_J#k637S*w!5zcTLYt)Zi z?2C1N?QD}Mm{uU?x@Kqsb;$qz`zgC+Sn$5%BsmISxbU>th4|~l04_#PzQ1chZD_(n zy*o+Z%DCjQv>Tx3j2^9?M7mU%M_*5*r9h(0`y`a~FfxN1V-A_}74=4y86}t(&rB5{ z$<1CixtlLsGBOH+KG(TOJ1(Usg_v%YHLB}47za^6eK@!Z9Y&rG$E=;=QUM|xAT)~}n3>ZHHAolsUJGqaa9#Z3#dr(bz0=KnzIof_p}8TS3D zfoQ$XG>Q~WZb%SEClG5*6k_Xx!#v6{Ir!-yrLj+7fAQZBWP8%Z=eSJHq_JWS=umB^mK+#M>s6@QT>t*MHb>0u8>y z1)=kj9hno;R|T)0DR`h&qP-L$&eA94ly0qa8s<3*f9W@PPDN*a;Znlt>fJ2XxuZu~ zj@c-K!eg*h?ZVt#DB%p-W9zx=HT$i{EK>5LtE*QCF=c3`q_WGKf{qgTdLQ#x+Rg6R zFhhUm|SGk|p^GgJOkDJS7&D1XuBvJLp%*eB(^kQ~*1b<7Us-23MA-m;QJ~ zwoxiJvyaT!t`8eyp}BkEaK96UtJg@acKQ(r3H&h|C(j5?ne+NM`u4*5cSf6ESID2s zS&9Nbh-;O|WNBFshJ9YTko>y2zCn?|wltuWe{7p^koIO!MwZWU8lLlniTxC>j#{1W zie9>t%(cW-lDzAGa1RUf)doEGMtkj8$19g7j68 ztHORWvZkqI>zhs1Zmycv9=9qiDpiAgX4g+*{>!zi?)5F%aRj+TR4*G0J0$bh6nMV>ONz)cdt-{ogGX@>#?ag^3_lW$-V7szZ zQNd5guDvW+k>Ng0v1(m^*GL``Z+kT`FxB&u!sR!q2`*lkmm`DG0KGtJxPIZ${+a|h zv&G`_=D0I%V$+h^56{t9_cN(|d-hAgmZ3or^66n&>I)I(h<28POs?|r&I&3GvA%UH zJj!D9sr!hNYS{1fF70)H&n){N^`~c<4JW_2C`TD$mY!?r05^^!&T~WcrgdlIken|ZGh&xt$NB&nVtn}}|VWSHJ1 zP3M=UbJZ(d^qKT&t2@!6X+8M}g~LakyAtA4zg~z)<;@Vf8@%dQZ9qQ!*B_5V&Btzu ze)9>oiejO0eMvCzLpLHH_Y^yN%?;fvON~q5<7+gAspKtQyjxu?nh!}ADZSjIoc?z%^=q1kcvp&8KK67tCvu@i#yfXo>2^9+SuHhVv{7vha(&@MV;7?z zdSW=wP69s=n^+^_AmGLtMElKY@Dn?jv<3@mtD~3wWi0bmF+=vghO61-lBUA_(m&AL~O1H3vbm8xn)WFME(Y0lR_4@Iz>6d*c=I|&)+dKXOtS+%6%)v3%* zsYBMbGpo9*E%Nn?-*rcu6yoeaB>+j+FBZpJ#(yF^gSokPxYQw%qXi^JZ!A)!72Hm- zQ17jN@vEssT}PFGMv;;$KEhKH)+n`7{?j<RI;=#`5`gvo;JS$WFZ53BX zF)XW+YHHMekdzQWj0tiwzDMm49dx0sHU5R4VVOv`2a--M!mM+8ugP-b0*S%x&fj`0%;mS0 zQ=;@@llXoPTnFZKMAmUiQ2yR35$uo=1l0Q$Rw`X1Yq zyX{xsR}NafXf<3R$rTONBX5Q4?f)`nn%XRf_au6!f99Fo5YU&a(OjpCB*pBP2WL|I z%0a5Uyi;oUl>>qbtFz7u#9Vu7N3!eJh2$tET2KuegqpG-)RYXXt`Xr^93UZr4i{n{ z;uOenO+G<{FP8eywau~9L3QorTIuOY;6s98cXur65C?l+hY3v}K=dD82ULOlsJ*6b_9O)9xBJmCC5Syq_06Vt z?tA;b%U7u$+cd`+96w6Yb2FXz(;CHIC`WEud@5EnAnr{>wSN>en=VYD$dvdhOy^>x zt&9>Fy>{AjkaIh`RaVo1If{m^-x~w-Ic*&dyWUt}_O&)fs{`RmAVA6qT50*%h_8F< zQGYSmKJJE)OFV<(RHV?FkYtV=$aXQRr&rjb8&&JFuAA5_4Tzz|lb#KGA3p^GMfki? zRTU)}I`u$BXK&P-W!!P^(1ASB5e~s--W|)$NFQH-)Z9o_3*kRYlV*$AIkSslJ-G}< zz1jS2GH&jqK?MO8Zu<>^^o}ZKdZ?FXh!bO>~A&iFD@3 zL5g+`6yK-ghlcghL~`S-#q^-0EfWq5hVt@qT74xYmzU4eZ~~+uApjB6f>-%{Hf3{p zuBV76T0>pO8aLXKcC=uyre+_KLUG~8d#J#rSkMXqSeeA7wxrtI%rREY)8u^#ztShUqSQKQr6gq8=XTM=X8sH&Ezxm zd5(>;4E|oQvNO8Ys*v<^7qSKhr`*hS`~Y{KL^PR}hQ-g&Oi<;GQ=sO|B}vtYSB-o^ zGG^D`U(vtp5+fZ}=wDsbZ~7B zV$f9-)gF4DN|V0%j=UH8&)f;@W~F;VgRMJXGxN!pp$kzK8e39cHPcyij|3N_802&^ zrJTuVxDGmW&RBc)2N+ANO9=S#Jo!2X6^xVYM)Y~%E8(~+Ub)MK%tFb0DqW}c#J3tN zcfKr^+V2>YJw?oBKiCg4gEV{8Ur9|tPyI;nuIK7W71ccxt~hQU1c6uiQtt0O%t?{N z{(gOYcc9p{bH%-=zEszh^;=^@dzxoKVRo)^zIti0!d7nC(f;tiP%2)UTb|=yMny`D zL-`8k%T|M%Vr_PYpStt=(&EbHAR=rLTor;zx#$G>dZ#dUN97>jF|QJ(&viv;eZ{_z zMhnkMhrly{$SsXSrSCL{H`o@q-*@OhKV7-u?zNO030jr+^>wK1EDUOWcg~ zk;4?eJ-Sxf<$Kxbb_bVIT((4MxJKFYNIGa7noN3fm%q0A zy?#B{sFQ>M;4yuukBW;ciFh)jjs2Rx}rHBEoUEdodKCrB#3pyh>$!mggiP<S+zWpsQ)p#V9#BKQ zwVC5+c9(vTR#qK2`o&`WZeGPhrIZ-Fr+hr{ND3s@o_%=vhiOmos2^s@=blK4-*zpZ z0Q3B5L(DhZTh1Cmb0H1;8gfO`H&0)#kI|dLh7}!gc8ziP6MsFP=-nr#gbYiBg&j8Q zUsZih9z4xJ7Re868l;2^Ht?^x{t3gt96)b+D6gWEUF1IW7ZOHjqX*Uv(S;|8zodvf1bZW>?~GP|{FVpC68jhq1CX-?+(X^{6lu0IH>rL? z6PouxKPKr0DYK_$b$2z|cceeYwRgQd%6@!r>nH@lcyowZ4fhYI zCI_1F-w`$P%*{ULyQhQPAHQ%J8IZO9?Fk47+68)$jy^xmmLJ!QZfex&Wf8RrQq)OYvRYE08 zlAybx9_g?bUsgn?5AhVrZ^zL){fE5GhbzETyA>Wxuzg3|-Y8>bJ;S&2YBZX0%_k1! z^e*WULSzc3R-v8t!!wXX4Q2`C5Z`KQB_5gxu8S-d!CU7UzG5 z?I?t41%1Hnq`Lmj?ZnxfwQc;1{(|ki`eK61(D=@@M8=`or2Vkc27TlB^511M)6O&) zk0FO9hKoScXxp4LUv$I$4WF-oXyA19sf}s$UNx?s2fcF!Szfxk%$b_HV{536#Y*iA zhH~5QC;_ =Q*5967X_uO-iCvD4p_?4oeL7lx;0}JTWB%Ec3bHF`KiZ>`5>ia3( zJ@u{$m@9Nx?zX7xPg3xmqMu_O@vym$c_?-PH$pJLx!Hvyg9(lcu)W7D?Bx$&M#Vof zDak&)PB;c;Gn6KoV8+LNp5FCorvA9%N=7_aLf{rVSluWaAvb|Z!=vZ@O)&0Ln}^BY z-l`^v)=2pK472CckzA5_V(H$tLUP;RL(9!qJ5D)8aVlWR2s5o;3LGb-g<5x^St?%G zOFvIbH?SzJP~swHj58}PgP7^$Jn-picyNVSuX_1v(cl*raZW>7x*4~JwTB&(!~v{A zQP-Oa?Igy9o~9GqDAZxj`oTb{;+d*D5p5TmbTf5L=J#Y>^b?uWx5covb3}{T_uqnO z@9KjH6)Wrhv=5?__1?di`u_by_8^CG5oZ&9aqB%{Qxh<>=wTX6E8DUC`b_fq~86E2MB7V7{e}J=iWHwef+|VqIz+4GNHFg_( zGfNEUe>VF(=Zlcb-Q^<6pHQq-rO787ly(0rY4nLEvZlLN!X#*f&n4#zj`LwkobE^@^`pDz>*~nS}8Pq zo_*=%D!zegoxNwODNF2ayQ{t4al#CVG}ga-1de<>pGc!Ft8SqnZVI$iziPmdv*1td zf`0W(0UxY8XFG!7E3dr85W2Gm2^_YAs zs#AB9CnhrLDGkj>>D0b*zdP>%sJy&kts}u<;%57R=G|umF7P&MJUqfwa^ZW@YqgnY zxD?9=w{J5PHs`%O`z-#8oCvzst1vgjIS*U|dC=B<5irANo;AA6k{WauR2GEH5?Auy znoIODeRZ-`%V%6=;M!oHlRD7YBqZu9Z6(G&TufdZcos=p*B6-69aKWB@+zxcoouU3omz zYZo86NTDtgLXx?pYa3i+Etg`*k{Mf;h$wp)BTME+yrtJLls%Cdkr~@$nM*=r%ZRas zhLUZpDe28N_rbmI^7-7){k-?T_w#x0@6Va%_k5n;dCob{Ip=%MbHs>QLF3cclWUiRi2(7F90;fcWNRp(LOC)&8$>X znF$Co$rh@CU41V~yb8N1NqA};vEqr58KjG*b?twRw#m>Lq(6sugSpABxMH*Y6KKb! zQ(YheKAWYJIvxC^E`6Kn@4Bpz^h_!0(^Rqd`1%4AIoNB0D&{3|ACes#bBvpv5$M-l zNT?sF0DTocQge!x6s^pRF*_XAWp%r1z)92X&G>M(#2#$QLGvjp*ZaeR+)*+;HJ5qV zQFZ=>&@>=`SXKPnsS9VFvQmEB-TeQMx1FE{+#P*f^FN+ zSFVCsCf{C2(7Z&0bG5}6)&NVN-j11|YCW$BDXBNZ=~tcsaBH(pt+mf z!(HAkfTr=VN6`@0JT1jK<`bCeyi4-jl(aFJ%J=N^V@T^asa*#Ec?`8)cb9Z9WHcoF zkh;lj=wR%%m}eXwXW0n;6A5BW34!JPv5v;OA?e)`p{yCFR z=Wxd1A@bR4r?c(ec0*H~!fW-2{G{^gB^k)^ztM!eulV=t9Cmr=3eRsgCuu(^Rv)DA z2};~u6?gf_Wn~51ik}@lDaNbg2$+*nM$eV#T1@*HSo1NO`0Qj!hD`H2R6fC>Co16b zMX!TjIvqfDev#J~AJeL81YY8hO^`(vIjq@@CLkH9Gpffe4Qa~@-Xk!?fAykD&rwL{ zUigZsu{T7@k~ll5!$(p;x6ec|OLXIhFA-h*f!FUx$ zKRp?>4|MaJxFUPzvs55_f+OPmq|?U&=4hx)~2MCYhmxJ8PT}M>n?shfi0pmx@Z6 zL4syBPJ4H6+NzKN&WXo+P7JNTTwfg3;bUdoe|#fQx*%;BB%XWqw;Q-!W2;8o_zB?Dp7QXxrGrB< zkhX7gor{-=+)O`Jq#lA52+xD1nV+#ZPV(K3(%*C>!iz^3?)!+`E9X!2loW>Z z9n$8vsqqUMvR327E*I3FeB9+~qA{5wi||iFUZ!zr_a!|L&DE=Q(#M%86&g-kkWh9i zB_@{N&jlfh6%_GI&&OL=p2z}##cbKg+J->e({f~YpG02(rS(unV@4pJVB`c&ZLu2- zd`l0Vn*@1jM{p+X1(%G)Wx=f`II2aihxP3NcbKjeFd}__(rx#jUW^t1IEZoAez=E; zLZ~=U1D*2QDlHqJ!O&&D=LRRsF)ikTN2 zWU>_Xk~mv9e`U4l^wbMmm%^exx=>{5OA1is)L{-|ZUF^Yj%t>6D=iDx;bN^2aX#6@ zl78BPA|d(p7F-c16ptFYtyiMLkQzV6yl(vHOrnpA!7Mtbe5GjH!<(^^&kOu9bE@*C zzo<4N1?3f4(*_BPfC?h|H6?o)wbR9ytlikxdeuL_Xj#x^Fo+f7dqCBT9PuW0Ejmp$ z?Niv%BSm$u96-c7xXfU|*#M}jerSSMZelfew&3o{;mP&tpEy+(pqE)3SmrU{p9+Fn z8CzQf9P19*e}jDHl!?0`Y*#qRoqJ}`t8Okc=%U){o% zTSZfBKrYZ^{l&gD(YUE&-=?WEF>5qsjU;U&E7+bL>`la9N%MkcqW43Lgr2zIdw2 z0`!u2TTCsnSAMoelo~5@ZVbeU(6!}ATfmMr&vhaLRb3f|6>2&0+xnFe%uO6fx8~o1 z5(bt}YV3cA6T_XTiY^sSK(rT(8;c7sIZvO;)Q*8>;!Nu|VWW(oj-~x_I5CJ;88{8- zhQ6=l5X#l9Yt@T$>oXNc7+qa8p`o5q1qbX}Q&;LY^Mn#HD~rd%q*JZZ{+wR<{}q0Ygqaf&-g=mNyQ2fZcN$Ma8)KU`Xhtb67^ zQxVrJ=gagG{ehMxekj1ZGps9lHumD{z^3wN&^@=SY)|N~!1o3m@Pyc>Iy27Dlrr#D zlpbCV#J*b*l=pN)ZH#w+5(Wo(@~d|HRy58@0|`YeuQeY>wXjyE25;H2ILr6{&ZWAqJXFv31;40PVfn~7A5DzRz_~P zzl`;X(FbTUuLrO z2Xh~&D}trJ3+b@6mjys0zBdD)-q!%Qy#16x{;Ln&8T-ey_-hE{cX{M5y8K0#9Ul0z i4$aO>|C=oJfz4sIZ$yx{Io)b|m54JIM&ut|Z~g)+rJ7U# 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 81afb7bccb65e94ee2ac1ad6d26abd2c5e35a777..75a4bd7f31222ae9e001ebc49e53d38c72ef73ce 100644 GIT binary patch literal 64572 zcmeFZbyQW~_cnUyhC_F!gft@3oeI)OgMf5*cY`1xU5a!{cMC|Vbc=LL=Xn>O&-eS@ z-`{uKamO8ZynCDhhvRmgz1N;|t~sCQnJY^5r5qMI89D?4!BUWyehq;jg0~0|RAlh0 zrG*d+{DO0NEhh=79HZEQKxiNe(h?e;S^G=x9Q9|so?XG(8(STY$RopM<>6_Xf*AS? z2pHvmnd<(vnM)G!PgbBy(=QRE&Wcs%FDY?0Wh`wPPEq_Fo2)>vrNZ;qrc-x63GYoq zc@1L>oy>bCnb(VGc#xXJS)Y~Lr>FU7P#W>t*2y@GJXj}dN~GwQ)?AF=cz!u9V=kd% zV=pPC|2@7IM9HFv|L2d5K|~1dKZhEUF??X;KSwb<7u#@7X%-KDz7$KP~Dw=5Lvk6%a!t5aHp# zD^!wJn(n=fPXM^zg4ZQK2yLf+T21jDONQW+nQzBX$&tYqKyia3%Yu>8kVx0zBMM_w zw)gk-?>g_%KVOMNinNfI)St_<>VDEdDy@{7;zO{P5Qor2(J@E_j+%#S@^pLOGi4oR z8`A}1p00-A^jOrp9Yc>qm8TlDIR22#X^t~Kg+VJ=VWaVs{XF9w*X!3&6}9Y%BNYvUU=>8 z?XnTPayB+>?)$Srm&-ml>+9>X5mLYw_&75w*U&`bmlQE02lE(y%SP~tNdyjApisQL z8~)SxA{ap-=*6#*IJ7_>bpvea96yrDc~-=q3Q`s~7>we9$o>g8}?rVX9o10sJsVkH%#Xbpovo8^9?Th-B$l==g2?HTg%OFxs z4fgbiAN1?n;{+5AB}z)l>N#6M=Rc@?D!f8jKCd+i!Ajo*zxf@YD{nJ7Qu8oZ}OM9Ee!x4ev7wDUnP}etgllc?qzrg%RMPQRs z%Bo>g3Wb7)R@nRK$2}GzaU63bwQC#vrvYDV1w-R)F*DCMo(Hv1aKWiEouD+*waFd-M!*l&3C0SBi*P%Mt+p_)CPvfHjJ7`JN4&`kC(Z@0wju!lD^H1No1HHp)Js7Px6glRA`HJWW)ELzFPvzDPMMSr8a-^izw zp-M)Bwag94I;alT%R~;(M7nHCMr^kX{;M#5igfZAA!NgtM<_5wzHT9r<5-Z_VH~Ov zL)z=pXner=vP+0mwsaT)QvEWt`Xu7W)bA^3EFWZvHwQ3}Uyuy1<$b|7tv&&vIc#Ei7-Gtpd}G*03Mo{hB#>VX=w z!Nei+;|VF8wfTA*NMLFzk?)R@Q4cVRle3?%=t(et=fbXYCzqD|#v9TN{jcA)U2kSy zZ5Jj$APbESgQw$S328?D*BwqsAriK;)%kfgw5*?BB%7&UBICj-ovINmv}ali5qWA#pPt^{BUM14GPph$``wd;a!z+wPOk3m zJ?6t3oSK?4Dk@k%cKG~{F8y(iI$@%Q-aDUf8%ABvw$=8RT0L&|zzR(v<}X||3m*iz z^AA{_k<_qOAF833i(k!;pvv%X`}`Sc>Px6*~uaX4vWFhN;&yPmnU2lA(W zYYKh4rH2aw>X)Ypv|kS|F1|Usa8$NAR^JiJxT54%!Xw3tKAmr~dKF$nOBgPr?qo8+ z3fa**X~z)YG(^2vS6`#mulG7;lRFn#u<)kA71#PO!MrtqGhVLP(@^XxWyCD9)M^JUTGNZ65nM zi-Mjf<0&d?qd?D$29MtedNay zspYK_fXpVM_ZG1>nT}Ri9oDo=rbc(=Z;2H*{>7}VHHOclARv^4Tl!*g`({}*d`#OY z;%FXPo=;Mqyf(-AB1H!(Q(Q}0q`?HnnP5cgK94&-OX#9d>LQB#J{-D|01=nBJX}a% zp#~X&md(S^7X%b+hNu5D*OBT5Sf^nPoqbz>*;i**C-2K>kJQZ(-q2OTANT~b$u8UA7*u2 zCXq59JutNlE-KvI=a-L;-gRl0_sLSV{p+_-N_j4wD7F8+1a`NhU5 zwV(3n1#GaCsO`r@)Tui))2LQ#x+@7OY)(qo(i}ASa3lIYLLYgcCuONC^g;dY(oQaQPzG6 z4&vyeTJ z(pa@*KR6Iae)5^q4=p`KvEV2x%`mCjZGmKDB^SRJ>#>7AcdgUUxvUROoIah1L%tJ zxTGA_`K0;NvRUt1MU<+BEj(}S;UUU9-_M?}7nDkBXtEIf1atUNom5bk3D>?dgd(aJ zPo)cQ-I7tyS1qzSiY{;CS*!o#ri`3$;Fc5u1fq%Z;Crs6U+txaPnmw0mZ<#mKtVz> zC3U#WZa7{V!kjfFxL+BfsaY*bI0P$@##I~BOhf7{drLEr%oTI(XJcmu_iYmKHx}>3 zs5~B?o2E+xoF~YMpQi?P`alXwX@BTvYA<{+PeF-d#kotXr2jRKYLN7|gQ<>%2Tq(( z{aeSi-|fZPkIza!Ljq`?xp;wKw7<}ZBW_Q6rv6Fv zI-UL^AZSGy-S29987XlylR;B@zWtBMuBhbC zY&_+Qf96jiWi)cSs;A-Tj`?x%&#vl-KUleb#bAB+llMB>Hr>#;Je|Rc314|<|IuX) zNX45zQ-MHp>~xWfi5G%8X**VSgq4g%TNhiOesyM+1mSy&4{ln&X4B$m{P~@#G_D;l z@-YY;uQOE&1d_YnwNg_KL6wo%cZf$V`UEvNF#NSgx`c(Xb%!0C!Wx;MeM^|C$T;`3 zJuiK}0HIT<*SWml=IaPR?w*!acKy0JC7|wUAcFWO`Zs}OsxnucOKP%WVIm@MNtB|p z({b0oe};B~ExV1O?yZz74;PImSL+Guxeq(JMYl_3c16leAu+_9bR?K#nKVtArKPN6 zkx8_v-p;Y#rBhr}G4^@D%;y>@@NegGpN<(zLO;x6DTSyv1LA zYT331bTAD{e@QG$F%g1E3m7}e%+*8gHeGF}*KK}qD`!-YWY=Kj@e_9AluoZP=g8VB zAX;i3b!smtXC|3!2dl3B4G{nOt?7wljra58Rz2kDkr`Tt@gtq;HIzovtL_RHD(an;30pEpBARN%}*}zH=>R%&HoU6Hs*VMy-1va{G_mJfj3mAf;wuxr!;k>0C6uY z=hlN^SW1v0{Q0=@Ia^g5&(Zpqm)Sif>R+lYRGy}v50E>o#ywm9*m&e?cYl9>)hl+_ zyHmBdw>LRIAARI^H%Mp5t@1UksF|Lwu^gj`Url!Cm! zw?-fL#OXcQ!MR!F@D$|Enas)`D%8lBh>I-b7QuR!Q2xsSWt z^jq}tBU#?-m9HG0($Vw#i>H;_#^ps;IiDlXG)X)DOoINFoWv8aV+EUc#4)E*^HUo0(40y}fj?b>N&kOCBrPDHNHz zm%Y>vP_c)Tgcz)BD;W~+CVUWGf914bUQT?RTvH9Z4g1rTwrKc?Idx$C_p~|mO>+M) zc|79_&y&(GzoXLkL783^%j(%Jy#(RE1!tV`*f$wjnUvXZoGOpgj8uKlSUE z@$JRI)%AFQJt)_Fc1ylE-kiOQO-LaBr+C55nJSn~`zS5Y=G(}m*Cy&~b-K>{dl7%M zm`?|>IyNgpG}zJ{?@&0#nVsK02J`Y8VphZ^kug1MSWON0Vw)F!tH+Um(1+mtxjK}P zkPwPH{Kq2mgtt2iE)#_*ZDCtA+SIvu(!p)r65bLv5(O$~JU*-(YU*INvL4O_8WKv? z97NRPH+GK9yvKJ}&`?rB*C@pUULq$lm}?mqNw(`fO~mUa1WqE~wp z{?XJ_b;T;}aP=_wmK4fbhBelWd-ZT&7rFCUO+Hks;pD`r&y?HuH-4_TP_`_W&i9;} zzt%Q3QrgGBThx)(=wJ>e zP#gV=r9?As3klGMMAQpr{BW|G!~Cj@+)}iO2QRBEj}DKh5KN;8?!9(;y?S}Oc6n=3H%D}EpFG3>AJlagu;xheUfz6iITzqM#Tun6dPy%2U@piF7Z!&EB*fu4DbI<#IeiV6~boF zQjb=0!LM4@Hest}B|yr>dE(%s74%VALb-@mCEWO+1H0Ms+jg-Pl1sDx@wM;q?fv8H z+83ZkvJw0o>B?ZWrh}r=fERc}7Dq-&1OSf7uPWYTl-}s|E$A=!1oOIWT~#mN!zBhr z3QEVK;fVd4Fd`6gzyddY{$HI+KO3Ku*AfEQ|4 z8TL23Y{gL4o8*}KX!zO8+c=+<&l`KO1w8(9+?i~X)26iL#2F{Eo-R8pV(347A{zP{!8X~d!i zU9Hzy>+r`vY>XHGUS7_ClCrWnnmIW=9S&eHS_*7(%CTUtc0*S;xBS*t^0cQ0JVF#8 z@aV0X8}vF@nUt%@EWor?46i2a?oEB)vcgb_e(Xe^@7dUBsfCjN}J zYT!v7Y~|n)o@5Y)ohyBW9|?fU#jKZn$?3Ve5`38}YUj$r*l0G04N8i()3Fz_5t6_S z*?zGabURp^T$$3c)C?EPnL9V*x_TaqOolj_M9sW@gZv2;s$$$iksHc&L#Tca_#a)r zvDpv7+COO$mQKOfd`6pQo1tZi26Kvc`AhxP+U`^tn|rFSrzc4;jq%o4_V&R6|G#%+ zvfmQU`Ht4JH(6DCHVNi4$@5N-kC2@G5tB4;rZkpliZ_LGRg>Q4MZtCdCa*EE8lb2@ zM7RHy?rza+Lgs;Ga>;JFjTFGS+k1PwLLX{(4-RB#pj|~OnX%Ymz+|+b;7PsFLtWM( zvF0&x6^wbQ(6<&Bc0#U4@&kRzx?M-m`b}V8dr5Ti9uoIdA0D_50cSIRJS^ zIXCND+1R{!Kk~5Uvis`^fP>($BYL-0!N^u&f_cmnALAvWWMZ-VxfI!hi(D~L&W4o& zKj7g*WPaFc^cpzyU$fkDy0($teL6%mVVrba2`ifUkBARF-* z{@4PgfO(TiF%j?x5%j+8m2iFMBzT^pd*#Rt@Xk-OQrVGcLVS*B(M5ZaQR21%UjRCZ zS7)~%aCUiF6=@9%Lq!g0a#}|g5)%6N=2M%Q&q+RcVy@;9w-j{~B&?xj4{{R6pas%d z)smKQRE&Jt&MhrCotmlHsL%ayz+tLLR5DsIVeT@w9Fm%Qap4a9U~-!a(`l^-3EX=3 zHrL~Qlh*B$xm!Ic9@lLO(t}bR{v)Bk}8S>e5{iWeS!|||C>OCtn9Z@U(OF- zE|LFR^^{_aG&(mG?R|@EKElFHT)530GS4gB4K}h_ABg*>@?Yq@Uto;f7ie9IpE2~o z0tcg?0YsGmDY~F*$2Ik?KB|a)&?m&Irf*k!?R#3T9L(&6(oIXL?La!GSi+}q%^x$2 z8Lu#Ep>?F&^F1i7Y2{Rp#XGo2ryquz!P~JQVD#A{bLcQ7*C=6v>y)pmkSmoQT)wWv zmPE-@!1L8cQTm%9tMCN@T;I3uIO>R5g?Q z1Alc+noOWK=pSJf^m8>kaR|3RgWB5#T5ry+eHE_Xdsoa@`rLhaGbC@1>mAwHf*+%o zN@4L1!TkBxNfUOZyP0ZK#W-qGyS2IuQz3-QF4QD`QS$?>rYf9X3Kg2YS_H@^WuiB* z>p^)h1CoUfDmP}%?hnH>v(tgya#Rq8Csm>z*4INQjyUlJTj}?a0yA(Bt?c&jfkI2} z>1L{Dmv$Vx-XQPz93DbBd~$n_iU^P4PYGt%pw)eieB}z++S9SK*v z!oGZrY3+4glc^g$d&b(NbKUk6iJsgUhyGGqbR5}1$8QD^p;kSq=FnVpY)QPodoEv& zZr@CpxvbAHdrzds!$aa1wAbv6=r803kEQ=usLd3<<%~g=UHHoi&k{X8dB~Z7Xp!i>VY(ELI5@4QdmY8DZegwEs=Dd3R<9 zle97sOF?7;rKaF!=}_xlt(6-{wU94UQXc4TA^^OZY%%#d@T?vNDVa9BO0;g@`x7=;)}Gtu12U&J8>Y z4pm=c$2rGcH}xGHK;}+1I0K$nU8MUzoaU|rh(3JIw>5F&;r{mIu=R+D@bNwPYR&GhbW4_6qP1e3uE*ra~sWurs z3ysC5nO$xx-xHer@%u-8k_Jr7VFc^q8I#m(BBs;fv{$(=?Bv5tv^4dTT`qG=5$Qr%%35Kl#}gYhjpTO;x`Nr$wQ!yD7E6XKMH=&YQ_qQ;!8Pj$%MRB`$U;0}SQq;~@EqFI3MNiFf^cN>v4~t-YVa zhABe|Lgc;csmzyuG@aL~r_x(gro)Z875QH+KxVwjFVn#$hVfmSNsayZS6u}*v*fuD zNGO9+w_nliE}6h5den@!%8ESpdi(M*ctUueOYmjF%&-FKBBL0jldJRWAj>vVP*=)n zV*-GBiI$CexIyWCEGV*R$K(Z-H6iW1DDPk8k_PW(uC@xHUaqqA#q!+GN=61lxYc}_ z60}l{xgO*1+S*!y(fWHis-PkBo|U`NmG9odL@{eCu=|xSo!DWLE)V;zLSGtb7ON<~ zjYf8WSSILsOcPHf5`BMrxqiIXt4gGLT&J->6M6V`5d>=IjKwCRLmPHj&G~m-F3paX>KRNAr z8!!k>bfojsR+hU;LWx*r+NX|$fk*R8Y!A1UqlPV9;i;5u9)IqJrO=tf%S9piMxn+UhPX_J{s1B|D|TEofE$fEL4;D7oW z$)UzJ2-Ejx+h^P(|Ai^VXK)QYZkvAZ$J)i{`q&fw`Y`-wN%ZrsBqvy^7)skwE6N5- zWBeF9pO)%#M?(9;u;vamPhdTic2CrLo@7$%O7x*w@4EnO|$m&~0C z8*shLxj&_q$1|lECJJMNL>rS~bnSc4y)k#6!He(aCJMC{SnF{R#!~61H<$fceI3w_ z1$@enJyKfJzABbU!O9!Pm$4!ya!=NcHCkuLn=4u;j~C2wUfl8vM|^Pfej&OgHT`=5 z;!hIG7f+a>sK%oi{4!zzfMx)W_2_-)O{JxR{&#{Pp)FdV3b=E^#Kxw}ez~4*nbY0X z1(D2$?z{UK9;o-MalOnDj#|0SUXgHc;FOh zYliqZUW^y#y*oA_mo)yV*A(F#mcT5eXPk{Gr9lwu(aE{H_^T@p47Ob?j<&E2dmm{*UGe=Y!}0N z_*{I8vi)AQ!p~!TBm89o`vm%ir5b&)Tv1*H`0D4leedK5T_L$FwSQsC1#__`K~i(3 zTz0P!uWwXzKK~9_EwZ>mAkT2Xc>uNyEPO*NcYzI&pbSY0$Aiu$IX{CT*5j+`omQvh z&Ek`$4$^`mi3yiZF5+R|gSbKO9{N%PLZhmK3+3dK3(uR-I*(YQXX@eF}44!=%E!LSzCQ=?9{au>+SCe=4*&J+79gQVVAVUfaR^aoRYH}Xt81S%N1 z$Q^cDVjts`Cgc;kv~?22pEOoNTDeWAlwDSqx4}j~On7?T*T@i4WE{2|4iD{Z=W3BG z$8-3FKHTCV!j)-N^f)|hI{Y4ew!+T(j$2($4yC2FRf&Ld(r#P~CYixZKYj+7QKzwX?kQM=*d49^-8wZfp6FzB0m8SYeG;K+O8zfZ-&_9%TG74^ zj#Mwe!kOJy#UF9-i7G~>Gx(wZQSwGjiTS}$hW;AQ7xrN?Kv!{j?qkl31g!dYHwe794?mo^()OirhUvg zp70>=F+9HB1pFBwA_v|$v}+b@N80<`pU<4!>{YGQjc5B@9c7Jn8r>@A-Y#x!E|OpF zzS2+#zqB2YmSZceJTsfBp!+WU`67O`3*jYksJZD}+>0A?<_9}XHrtF~ODQR<;jsW^ zuVrc6mfk2M)Uh9kIza$t8QVBl{~9Vyy%4v0;g0w^#o)SQ*gE8>P|1->^eupW5uazj z6n?l`zp8@Wa287G@;&m)Cl?D2^zU_6IiCX*fetcmttR{toesZzKX`#CfDn5`w2gxY zPL-VqP9HLeV!4Vcy(*x6_<-Ly2S2C-y;uk6OIT_#(1siy9_q>^SD1s@==-dcCV0gR z6lF=*VXIxm`+-9{0-$RBm}QTtOW~=lGdsDF5|0*$1m)HBT=7IX{0iSX>X{s2g4nwVKp#aYX|Pj*5y3AidGDv$H$)6mIgpuAR((lr5nr5lQ=MpV1w< zO4ZIC!9odTYv*v?y^jqhW7sbrI3qQ*wJ(`vQEIZH(%HWw^g@NE5t2e<8>)LuM#2{8 zdJA`t9|ji^O|y1B-2(ch7qFiI!{ioj`&-IzwAhSaUtf<=N&P4w7Qx_C%`BCxfrlC-Lf*mj~VERmtaX`%pYF~Hup zHU)iQW8GqeMU9QbhE>EU*c4sc+bpjEphe5^aph?6=PR+eM;#c*;{MfvvFRu$I!acX zWa|cwGf0k`M+;FoK8G@(5mn*%3E(_LY_G3&N&_%H)Kx;zOc*d4`2CK)k!fqYew&yIDo6e!^0hc#DHa3ay-Pq7occw8f+!}{6v7d zs!s$4?)9q`qQT%xkuU%c><*_vbq(F&y2+8`t+8QlnF8{ zUib0+Y%Af=Se&Xd-j9sv*iy+!KJ&EhU5Fag7*G1646cPjFuNkxTf$k<4*1&>m&K!3 zj6WwQgRsa2#MKD?RU!U^V+S$T3w8ZZ6dOGE0+s>*auGk(=MoYI)>*1rTe+qt66EKN zN2D2)svtFDo>zwc)z*Ee3L7eo8$5(KX&!DYAocZ|yb==yv90H;YI=@pbAu9YI8}?C zY1vQnGm;g5CF_O&5ZYzSBUJ7)!U|1(7db@mX$V@rbf4&h92Xz0#r5SUS|`XHzFpkj z|8ETRB{MT9S8y?rabx;pv11;=j(J&;xC(D{{uXo;zS(?}l3dMHBxpn=qI4`e-WZ0K zKHfk0=l?*m_0|6mlKp>ElKT&m9k%O4H`PIuUVlEZFR-nJ!B>X)k)crPji5}}M@1?5 zw=_&i)%u-idmEzilTDNFCwb^ccmO;LoLWs&6De~PxoiroxwfuWNFx??@}FPJGbMk_ z%93Uw=viH*;Yp93%zwnS(YJnT+D@tKR9UWuB9pt$=9ygk6=bks(4gTephimcX?6!E zAhGrIpp$5Gz)4zKezA9jj-*&5zn}jV{A<8Xe){IUmgXnTM?Gxo`HCVf`Xjo{fSSmN zUtWN?aE$n8q`lhxQcAff4*Pv-HAuGe+uJFhreR1)Ns*9{hzn%O@T5xvRZjtnY=jP1 z@(?1pYH;m!bFrJ7765FZ#fw@UPGM{Ezi*kO1&H$`y6FtR>+TcV8Fj1gO!*c+CVsrz z&Oo;!a|LqGz9d{}T&N6c0is$e?XVW+M_WPqZ-SgU@1aeJ?K;X30trAv*-7qqAw+so zM84%!)t)dGGfJZAde_iJ8Qtskhv3gLZJ|^FV^K{FE{^aqL{?UIVrC{HDhjPoinUd< zOe-Jgx%m0{1^sUL>=&C%T;(5QNGw`QeB8HH1&;7tX+%X~WCP7OY@126B*f(2D5q9( zhnSc8xaNgYda0n0RxK*QuBkML)bxUmePVT94PZ{D=`nl1MuF9J@*r2eNWm+_pa&21 zU?{q&PJpG9ro%1l)pfORBnME8I8S=t$@*X%b_DRq)O;e55X-M5yFa+i>DQtuu2vKh zmAP6)NIqm=rEiOO8gmPMdMi^}R(6YD7^3r(C$1h<>=u=YlBZyfPw;GfGLOE5^_$QE zR4>zn3P&7$5coMJ-3SlJJf8dBoeVa4p3wc+8D6AHdili(m76y*%mAwwKRpyL4nE8C`y_vH34^dT5jh8ZI1+DgIZom;Cdglcm7hV!%v3$0 zl{BN@7usrpK8pdK@&HOen3@U1$I>w%(Ocuqy~gyv`I$@i59pr+D z4<0jG1{3W{ZJYY~EX%+8eUI z!%&;m-TEcA$W%C6`fQC-zRHG6h(b>qfCvA4*Kr6nO}a7}l-1LX} zmbAo+Gld=VCWxOjgU3TOR5vaflY94vSvI2PQ~RT=^4AxTmXJJ}i*&^g!n+Kza6C-M z&VU?O%`iOl)y^`L@*im{L$6~%YIz$ed=Hfj4v!rmuZEIp%IHi$@B91(Ta~*Tb^Co|17Af2I#wP2pFcCM`_U z+c%1vOm-rv@nNau;t$yY*g0(2c&WvWgp^c*p~pxo3^k&cgq*xLgWu*qzuK;t;lR| z^hcVDgz-FJ#(n@`9Zk09?7O$DQG)KfB{F{F8-0L=RC>Q#O{=~xC!pDJ|I7|{O_fCt z2N7RU_rbN-ZI;`7%a64~CZ_R)@^!3Fh8DVR>Y8&i7dN+B!{ybmc1Q3dBHg-j|8&`F zE4#Km0T&>%fNM4u$b7$nE2fc`0tZ?@>ces2ymjNReX9()YC)lakgRl2X>R$f?ox+;P?V}4t^+k;r$f(&;k?WA z`(s1OP#`R&K}WUK2_e4~f~c_C*TYbonmF#()epFl=(F*4j773Me}4NTKx(OEM7}v2 zwUJ+v7^w+acG7j5PkBcfd_&7k`qRjCcD(>^*Xeb?R|hiFCQ`TLM=3`I@8)d6;oD>D zV3u~G;?QGbR|@8R&FxeJc~rdpoBfk9qhD?`wCTq-`0auYrv(d}K@ejfxhXEbPG z=b1Yw9raD-mj%3{QLiHGU-@^e*$q68pk7#q6DDR|+EV1mln~K*Wg`0cL`F?QN>i$w z|NM##F!sX-a3qbjP}|Jr*eB~obNCNR|2X zl^TKX-{f5BfB>wMTlI#1vE_MU#W&5Kw6>CBlKQ4G?XM*Dt% z8gKc%tf`%2zw>7rUiRh2ayn+dsc|})aQ<#+fk@Zxy1Z>=#%Uq8$k~#Az3C9Max8| zd8o}t*d|A6sm;XVSW*WQDM<5Zb&EEvv$L~-q(RX4ii=OB7lqpQQO??B-#EVWLRdJ~ zW5tiSL<1f4#CUFHdsN%ZJk?=O4Zcx+4zNE0nMd^W3-zN!n?a!mWEx7|*+7*nK#p(r zp;NK>S!6V>u6jiIPi)x69>B6Y4*e0|kmU_;KKHBWCebq35BZ?EN`hfJ)h`;VN0yiV z35&6B^9p~QfrM$ZA1xZzPUEYdyu#uWS3O8*u zwe>j^6nRb&;W#KpaD4�ejAt1;;Cllye?%A>!5Tq=4~gt%HEn_M8i@I!UKO>(lFv zl4|ecRf*X6_}?Hcg#`9S;7Fyu-CyYpc)7B?JcpEnjDkWt!s9DyB;i-YkgSj;W3k~@hZc11VpB0YXfZA@&(u3H z%4AM44d(EDExPcG1D&85(p#$o>!yeSV?}3bo~6uJ+9Rouk7U~pFO^wA{m2a_O3q~=!qrlaOIXE_aY+PK zBOYYqjb=?2Hyl^)YZ&6o_VUu6h2%H8E56%&|6#1L-*8=a4~dNnKp@|Q9LD#}?V62* z;2}>^o|LY9=nChbkmmMa&nxQo6Y&r>E=hyo6Be|zkb!P2(250E$HKzG?Zd+ykCM~u zGH6i}9$K)O|qu=5(c&gAQqi1T`J$Upm5dN{LC60ty!R+V2@hNb%R7t zz1HY_QmP_b{F&;(Myj}F5ywU_9;h(i<=QMiV9=t$_jz8IX8!oC#FPva=%+*&Zz4lb za3rCKZO1(ro@-&mn_nC2>p`E+LOqAMm-~rw*_05a5iM8~KpGCHXiyMDbaaSD7DR&B zN#G%IsXAsy@b$084}cgK4{>k=(ioeM6UFY&@q7`{+KX^GyP%Qc9eqG8*L60^OpVFtYtUc-CK8Hv0i{t*tlVXFMz7cP+k8>pGuP{ZnFT6e1lfeGHW$ z-=zSPGpEn^3Zi^)O1)GA*URhw9IZ4ue#RdiFcxO!cqc7$K9;59moz^#5JpX9&j+>P zAWu5U6F(K)jPf;qCVZSfF@Guu)QWR_zw;YnS9G%CXXCm##S92ny7HqyIG*BpaKPPQ zK-LtK0$#^?g~QrvcSs%ba{!#x-S9tqMxUZ+;_O_TC(66i5??5nUlt==mySm7Vzj%=ORLCDecnT@7Z6XcaTVKeF*8-d(5OQ@ zA){t${MzMVhgwid_-pIs1KYj4)-6zW{+Wy{`=lJXcFNFg<=CL7pPh3QUL@u|D zSeqrrA_BeRWx^wU-B5uQ^k(pC^n*j^i_d;fXW?-l!-{pv(LyH)z#6@-mSHp#fAO#* zCKnfD0gjov&yPbT90}6M=V3!dZMTQ5o)>eLC&#@w>j#Z1IsWC%&7_=d$MDKb_%E}C z!j1x9w=OvzouVFOpsacI3g^yW?5RwmCj6HW%hK(DEd>b-W%t8uKdDp(}KOEtfh5 zb3J1!uB?{a!k{;#hI?OrEW2d9aV1-;KNZuISt>kvxhZU{CERPJ$ z3WdkpCtrdrW{R)%UPbL*DGDbv9v?oF0@FXF2wy{|8uXw4(J>$ns0=NVO zM89A4@kYR2MVoJS+<)h<{F1ZheR$h~1gXsNCvc5tc9g2iN@>-%O~M@60LnbSmQ&E0 zrfOuA&@tlg|* zu@QZ-b@@4?u43naG-0OzwclD+Z6qaScTe_tu}t;qh!z`^%AmpKFc#Cy(){8;AEHW0 z-T$g`e7U#3wB)Kt?0oA&Hj%>j!B zGdN=+XJdkCI5B0a7fE{dIn?j4LRIf~D?We9uP=i>HE5?Be~TxhgM63Rghca&0S^se z)dYlu8^3tm)d)=L^-dCCR|$y>XrLAHAzFAGs2Ool5jPF2RruD1m~%m^knsEIMWEaq z^(-$bdDrb?aT-E>XFT9z_WRb*=Yaq2yedG2O}0S45CdK#IhOp=4nZ1MhS+Yd)cPPLiHmsVvrY-IhGioi`3?qhQ&!XSNUs4Q+OSP+h z$hy)3SJJo9x;JhLq1N1R8SxYIn%hf0 z-SY{(cyV%?3-kS}^L0bZ&`{JX^@SR1Rp*0{VZi;lOaROl4JNrI{P!FE)u@9%?|S?D zvHB?IrPT(N?FCJYTXDz+?0zzq9x>{5GmDO@sRzyT79OA9aZEcxqD^h?zsdp zBkbCxpqRE>G3NZr%J{uYi+l|D@Qz!ovrHM57Va{L^~2S(k5agxmN)Z92w_j)&vJa)C08?+LEXf^=Kt2k^%8<5jdgB8^l@`!OJH`s6s6H?Wf902%6`5_9h2^lU0gds#I3}vI+sq;{}7}#^p9RG|jMK3wIZu7`$j(_omEOz3x#;KucTn&dScN|FL}o z2*g>?U(mdA6r_0U?Ks&jtCG~z{HLL!0CSVryblR?N{iH+2QE98a+4wBd-YZH@k$bT zZp@<4du$@e5A$8};OiSmUum2wBd)^e$7DF3bYSZ!xXYas;paadM?wG%>v5!3DqCm+CtZ=fZuqAK9f$he3zVPBa^0#&R`+l88_U09;aIAfTyU zIJg2`<=jFU0iF0rNJv25B`!#@ne+HndLJ}ff*oum2nOior{ioy0+eFf9K0nT+-(Wb>{z3Os%J#9 z{gWq89%($F&V1CVgFYmHt~)*Q&!AONO+zCTB+1naVu0V^h$`QkEs;A3qzVEAHxJR+ zh#g!ogM@nvwBfmve)T$jH*%QBJW(uCAY-(Bm9+1vcWgx~hLfg@zGmL8(AP}Z20UCK z4Js4~4zL7tL)G$l6f-v_&5KA2Vc3OIpD-K!@4YoNHM`eO^1ggQ0n;D_=nOtG89uVn zVSl(1W%|R7W zSrS+zF`mLP40is2LexV4X;+cAzz|Z#&cbKE`rvb)7K#-3wqOJg&*n(7_Uvh~;WLc{ z4C^3_7XI6WW2h;bd^hydd+4Vw7UlMPE~BHZC4W6Ytc2Fq@^}hU5fBl*WSU@7zi_k7 z*6SjnqLQV7iUT1}lEUF6J-D6}#yuecx*#lXJed}B>H%0C?X7w%3*r@RHx8OqaA;XD zngQ3TJ&eZ$?myeku;4_>{_l-x*b?!m)zs8XRa5NR?1Wlt?eBZP zSDyR6ujiEltOPtwFO{*x2Yda>wRoUNefh!wASXL=NFQT(ONmV`ZKX}U=#1n28%t=4 zi^rVFOS0z0Un*izp~5QV!AH?{lvq|~+l8$soMM@v|}v5 z2NE*h>B9-o;>}r96kW;i$-+@}hgykPA*>)F6F#N&wAPwbPS#LKk%auEoc(wDM!t5J z6A_ziJy6U7Gae!c4*`>}jGLPPyM7BYU*DsIGMyq02+66xc>_(9|H-aE12SgBiqj6+ z6g^^m@EY!T&rOH6KX3=yxKZsmufz3+w4w1AL4h+mAqf5mV?*@t*)w6|@ig$b4wlb+ z3;l9|mfB|%a{C*jarqj{II!oVx0Z%RP-G-3FF55Ap_7ou8i`O~0@W89nVFh;_4hKu zYBbL0{T9tw+6HgH605m4-C6@B4_PAsDVf!_g}E7f%gVpD3i5%zXIJiM_m*p|mL~BR z_vLltFach09;5p@vZ>z#z2Eh3C`1Hk#Uojw*3OK?`K_%Kz{~;sKEU1rp6~&C+2%lt zTB?>+Y(}FC{Is||$EPcd?S7F6M0k$1Nb}qYkx@|wyh7nhg|n1~Cg;{k^vO^n7 zr0UYBlaf0;ubJUxxrAt&r73)`jA|PiPHivW-`w1Qz&;5H2}pLna~1>xD=`;DW43Cs z-2=PSntqAXv0;ZvYp9zMIH*+8^zTEM9Li)+n;DIN?cQQLYhxLmWY=@iMdVCGuHfG0 zMBVWXA_2XYh>T3;_3PyET+>fr{k^*P1#YaKKe8DkoMLnAq2<$~;2^bpAhq_BJU2zp zvd3DU3jEM0D@5;kdl=}NWL$$-y9-_ zE(0L@_a{2d`Jw{T-R4j!V#m zUnv6<4RVUSY!FtNBMp}v&zgitPK}LxSk5Da_l6okT;$!{+<<4*AY6jVe|NgVWOoX9 zi=>_zpZ}he3zJB!%9BNa{yT|d*GR#{$iIJgZHMHSJu>Ewh_8njD`ZHrCIzc>vDR4m z(MFp1<)Vhx&-(|LpZwpx8LM&?&|;U)!Veq2soJ7i2M^`iT2B;<pK z+?fbR;d7=ga(_0#w59d>b$)R%%JS{fWzzZezN>IrT3V&+{+!u2_HoC?`U)6wgZXqv z{l-to*`klM&6j+vyQifDxME%piZb8I!EbF)l$Ph}M@hz%D^0XwI3u`302YRV#V(FZM#wAA#t zV|5#wdGeIu5ak)rlQxnx9vi6_=5z z2}qk^EM8b{RN~COJ)QO~O9&ZIEIx z^HZ-$(N7@Xf2`8p%m}KU3k$AqapNnbe;lV7ZE@;xhdr=1plSw{_eIppNwE|uY+5~6 zh<~Dj@qF7OK35zXoSU88@y@I7Rq(L**5fso6cX`2(wx4YG>8X&Eu?%+F&{J5Yz&bY zZ+eoLB^VaaJluHv`F)h{UKPWwES*YX;%s*?}h`ZKrp z+P9Zz332E9UnIe}PhVE}_B_CGoS}$pmZM*2P4b8#Ott+pLsS zay%IJ{T;if(uX7Q7xlS}#9cnQFuY%*z%=nw4$fU<3{FwOZe;&qo23swophO`IWW>4 z8DjrKKiKWt=NWR6cIkWpg7djL8CdJHjkb^JETC5QB&`e4g*f?H&f2ti0u31f>lM(L=_C($j}fMGL`Evn<7r*zVz zeDo(SVtjjrmL2|jI`>)i)&c8hizYP4;Kvyyd$49&SxJF?JHRN>-2s7*#TO`lIbXi8 zmK_)CyRRbLLFo{+eNR9!jZoj+XuN_C3)vn4!Zstd{IvawiM%f^&Q4eulyRZP{U1M$ zzh>ahyImYE$3b1xS6hA$761pce!Z2gYVBPDrQ1P0JW2&`@AX09GX|P$I_5~Rgds?~ zgY)+rM7&~mgCjEVAZBuY`r8Q(5}ck57iK-E{?HJoew*zV^o&gMQu?xhPfTk(gyraU zS@xYx0UWYs`QUH1tXgjnP2yO09f00{`~HIfn#iI^M0I>L*g*dzrc%hS^xK`Fcw#$` zK~CoM+;AE(H@vmO^2v9jO^X-XSIj?LOTA92*mvDWqszwWzHmQ4XIeqf{#S2h&_(6f>52_}3k$KR>D#V}dZGF3O z)e10nyz6}-`JY>`w`w*r0u%UoHvKticp%?D8s8(hkJY62>BZ&OM z@Ft#nlGdcCo-9qVcdY&xk#ckVd*GJRm=d>~KvFxm5aOT$@m)TaaKYlH_WE@gfP_gW+3mxUr8*v*bx&)gYZj0o z^+s9A$5Hfv+!stVVLu27JTXJK*-`WTeKn`AoBmnj(Kz1Eu;rSP7KJUWHE=Y`4+pv; z%1u{D=2WAnx$i!$e&%RxS1-c9@_Ha}E zqm2Hh=FpNWMp$~ZP&zc*l>P81oO-#Wwl=)QPB2EXo~nmef0*L;j}(Xli9OR^%Fp2C zAuBuEAvwF1h*Ho6cA~dsU-W8iiAmlfTmuy!*H6Z_LhlogMP&OXxBI-;%E3-piW)uT zTU2!{Dmem!{`?_4WcZbH&++N$WXA)jI~YW6p>^~L3WL~g^AdYOk@uJ3&GZM88k~~=!l7BXN6$}Nol^WbL^V=?jlMB19^bi^-3G3%+ zGB1hn>%&7T555;d2(s@=tApDM>SnH%8Pqt<=JVMj8;^$ak!^M1+zzj9+1@pDgsu!% z^x@JxbG2@BEjdOBVawdEsE`5xrl+JY)Xx24Syv`C*wG||mGJ_2Z{qmywQ__=x^bUQ zcphzQ{=~u%`V}tFfTa(|J>rKyJ?+m3{y`}X>bL9~FV%r^Z ze5n89#1EkBg59&dRPOqRB*~(rl$`J-`lcx)B&TEg#pT-968s=Xu0xB*%kx}5JFR%C zoo-cVd3lDD!#<`c$tE361tfZ3Q6q<8Utbd1>ruAP=!wxTIE|`?0mxRLHsm`WnojS- z08548>E`gnfi1hdvD5ZgZvSKJ?c$--1n-ACjGnN*{LDo)N zeqcez{5aZU(%X4RXnoSt)k?{#6i)5eDD(DM1x#-D8ZoMzvg?eEj^v9-uAO37{$|c* zBi@C3xS`0BN*rv$ygviLPN!v6N8ozK7+kee*E_qW_pJ2K1x-$=nZgA(bP*s&B@qat zsU;%(s9#HR7T2VbCqsT*&9t0OfZ$fAlG9clF(ZLJ}%es zD_xrtyCia6C5x*)anW*s+4xQdCD6&!)4-xAeuE84`E>|=N{It9 z*g5Ogz-pl0FAhPsn}r+><0m(q>a~W}2i<SRx@b@Fw(PTYz3nU$F}{62cn+@DU$hXukB|`| z)Lb}s(~p^tg*eLeXDHzQbY>5cvA(uzfAcn0A?<~CAps18mH8UUc5(Icb=lXyz@~uF z7%TvE3~yKVwdz1Pb^X0d-qV^QNrKZQfDitt1+I*-+*%@lmGdvagVzm>K)v=;&p5lH5of&2MF0#LqJ$;59K_6 zRx3J~YAvgXQn)K@()`U@~0G0*iKwB1RV9vgyV5fVddldACRpY&)5fs88i~ zr^_o)80KKQaR^S7q9UW$q;-PAgFINp2?7Nfcb?D6ZWVVbTPY~ohF z`fhk^3mMXbs@Yt*ABPxK;B#nL3gw`{#x_q&jJfPRVf$tm{mXtO+A^rwA9wKt15_C7 zz3-ms@}*;8<86DqEOybS>@IK<3k45H!!d6eYsG#1y#7a7Ud4d zj*cKC3tIlDjnnH&^I;MwS7i_c+}4Kcf0$9PYkUK-wuMX8XJ++ucWA`fCBG7)7_Wb= zIflqR+pb(`7X@K3OIo{=SoSE~$FG*SAPiO!eU``C)cu!e9`fR9_iZ50`GN>Nc-%Jn z>}F^}F7{>0KZg}fqd$*%A8$neT^N}bs02E4u_fTANJf8KlBE6^GMwZVN< zaAh-qN@;(cWq}7t@4brNm0Td3*9Q^O+ zOhMVL7?d7>oYLsL6aOa%rj8hiM)N@B$+-#5fob@`!9Zx!$t5jdz@L5iwe*Dzd zFy;x(L_`Fw()10L%_2HrLz3Xm{VDJj35is+pfL>zXI_5-)B=DN0U@*P-SuKjTu^kg zpVo6@Yx08@?l??AdtUw0ucOp6+aT$ zY|T-BVF}P)k&@Dw5ToEU0Fq5bPiP=%(9uIgzhCR`y}jVR^^Po2uQ9-v&}KDvRtN>B zcXyELcUbSm01ml-CU_=W>Kq-VLdFtuq z1;xxV4!j(78K$Ua&9AQ~0Bf72t?fU=DNf1h@tnRRGf{LeXY>JWB2NmRth5+QZpmt4 zth#4MSu5S|I#4qQ9|(c&BKu?Liz#IOpI!iZ8Q1sHwdEv{tkmVj3PsF#%F^6nuaUw7 zAv#z_II<}q!KNOVp=o$~$GyieDy>8dQZU>@;PeWO=*X)7jSmAFI{3lK*u{U+3R-QS z-jy{nq6Q;CMqLJo*Pxj8H}t7GLw5QohoU3-jB%(07L-Ag6eM2bTlSldl>Z5Yu}UW@ zV=2)CwAosGbV4A8Jc95V?EEYnA~=3iwHD)54PdCDiGq^9B|nQ{Jcy{6(c*`X3wB$g z|2RVa@_w;WcZW-ec>q?W5LYbQj$7yAA5g41({W4Z>LM=S9tBlIdqEq3JOO3dpptXJ z`W>z>Q(AzB^#r5I^OX)xI|w*X*ur{l2APL150q|xyByz^4-C%?8 z%GeY>W{xOBh?IUL48h+c_^?7+do0(;;f10%C?|hi_%@_ΜIKMT51Z2iiB(O4Zvf z$ASd9tlRBqLpMDLQUH>|OtT9Rkkkl(%?xE+3aIQ&D}$ayKeUOoO;2u87sE#PTFqja z2e~xopN=|2?SH53L_IusEB!ldM;>Gg$AA6|hEjY7J@o)e3+%FiiO5x_;)OFq z$cxCM*;Ca#FN3aX{nvFV(Ep(M?ZUR}!gQ(af^q%^-OBk``BALl_Q)fY5TZ$bwKFGl zcUS(`?LwhkpISwa;Rdt+vnrs5n9h>W!b|W}ew2~ia`~e_0SyYT-qdc(UU~W>R-a!% z;#*yILYxSAO)WmwP#Yy1JlTLeM&QF6^nIT<3pKrfG+HkRyaP~Y^ph~geDv3L65zGq z1O5$|7Qx55q>2XaDjXzyNq?C`v2ct~CNs75C=q z2Dd+ibBF#1@uhg2TAiZg=eiok!86y6O;Aw#z=uJ&r!Q@y!^}q^{h2~QC_1`_dy6b_ zQjC^&{lF^n7=B^8Rl>QBQ1L7NL8%XC2#rGX9t6VlvAf>yk;RyT5be z^HiS2p{PIYXTB}h4Ld)0H{eqisVB{K>4Es?IgvApIy`}MNp}FAI)ZagoHSH3zJyHO z^*@kP46lcX?#<81`klb@R|P^N0Ce@U(wzWGVck7n1MMZCs^UTG?Lik1i~-2vcwC+` zx2nqF#0L=AkLH&j2-+UbD;z*_;>(-5Kk1X}jpXr(i3CUQ5>V=g0YQPQiR=g7>ltun zP}kFo0nW>v*jDpA=WCV$Lt^rv_l(Gg8@5*sHZtnFS`ct9U+=7mGwE6u>m?Mn#&Q!j zJdMlya*b~DFrK)sQ72wSc;PEP^>E+$%ftu#Jv&q9ra+Qy-`tIhCNFx<5)y~xNrkdA+_XsP zv(aemwEkB5wHh`i3`Auv>ZrT{@2fPNyX9GLo_<`Cf?2qX zvo4?gsD4=g-JA9+ZQ0p8gSdj-F|t`Fx1=B7zKqSySoMp?z_!L9$vfd*)8@iM5l7Gr0|DZs zVQsODGvw5{02vPMK1qZ-9 zUTS7$Ps*a8Hb?ST+25kqc#>C}enbU$l|Z#hAo>LT?nOZ-t?u-HyMou8(} zl0n-zrEz!)0ykT*caq>wvV8&rO%>FdXWGA9&%0r4LnSJ!Q{hXF~;t98mp z!DqmbztlB0h6P#4bX)3Z1M$Q5^cuCfl%c%XZd2 z^`7XeeQfdHG)@&WErz59CkEu?0U8=qp3WH!9`tAs+@A7JjBAf1J3Wio;$qI_y{M3D(Q8%F8G*k4+Bsfs^)ylaVGE0$vI#HfHl7Rw*ob6s5 zpf?y2qew>5QPJU}v#uV9k9()gU@daL9=FbuxB#_n)@@H9>W8on{&D;6A4A0k*}?CL zPK6Auu0oj!Z@pi}!1)6@mggBGRBOa#P%*qbScJl|@Pcl4)DBX1oj=D`>?1%lTbe3A zpLI==LKLM2b1Rg*bR&Dzxy_1O|D9YTO%heW2NWB%e<(HvUYK`(nH}jJgjyO-2n7_&B0vs0XCp%tJPX{9M;C$Ga&DoIQj*skeo`1YrI4 zeY~mV0{(*5Mz;YyO^4?vyvOptF1(pDpJ~AJCj-X;99S#5gSoF~UV@`7SM}9%3bO(U zDoDk2RBLN%qEqUOl7%ynVtfFL8yE~aIed@NydSQ&65?LO2SXc06jfC8g`lk~#`djC zx?Q>(YpJP04DY`2Qvc`Di*72Re636gD|O{NHvWf86g=Hq;}ZuxJcrd(dF+Kou%;c; z(*8qjVS_-Pxt1zqSb0ksy4{=Efq3x0xnNR<9LW?-s=9ReDu%IPczb)p_0NelB(1RH|dcX-D`^kBW+u$5Tm=nZQs@6V*lgSp6rG%DKDkd%aYa zs#H7g&W}&!D?yp0zuUZc7?Ecc9%0};xWs^$k)ZehuchSxIIO@Xq#_2b`U7||z@vcFV%B**8)Sc=sLOKXa^ zjivQ7oF}AsQ7Az!e^p{28KpT+i%(v`Yw*SfvP_Tr7&7d^!D!17`fUntByq|h=W)H8 z^(KFOYfBmxfip7Wt$<3S@~p4H-gB}WXs22fq#=4*W3~>tgTJNTdD|>qLmkvc1x-$C zsQ%Bs!}+FotI!@E{a|(CMDLS;lqkv#Hc*C`H#Gsoo!Y6vVJA>sf!+RNI))vuqSS0v zjkep~-Y-7b2EOl#79+gz!4e)QsBgc*Y&TYU-NqXvD<)E59@$!y1MdguQgWbAz(SYV zZEm~=x^-;t>`01GWG6Mw*j;>5;1e@y!cFh&lmcLBwjC0g(|0yD-N61WGJ9xTf+>E7 z#nF1TW(srot3Tmt71J*~J|5@n;$qFM?RK&Dy12K{6FBjY^C|DchaVa9G5*iW$6@jR zPWgD|=0`dp?h_booPbi|XfaxT`NCYcLC|nY^DeHHK-+Gq=C#X8Ll584Ac3yHta=8~ zvJk5^$7!;|f3R4;gw&vo z-x%7~gV;@7UW5z>N4KR@i_iZs?lj-V#wV~Hxt>8KCk% zYI_U@vO0UE2l=ZyXGuc%Xqz`Tsg17`L(Q`O!br>naYTT-d#S2x-t=JxP97_f?J5yc3RLr`XvrIkn5S2lPo}SjY?_T#@JbQO4;O$^V6pQFFQdhKWre{c(}} zSe5><-Th^&i4AfX+H?DkgG^S)3?G7*)V-xE{!{AkMuy*gBS$N>Wj#Q*S**8&6zY{y z{T8yy<9VITmS|eFmS?DQ;^K%8JY$^aXB~NHX#4$DrvFa0D0!QCYez2zaCeRMWL>AU zXQv|{X}vG*5_l-Gv`@sFTZtmyzq6x)@h65I61_7?wg#|75cQ%}OyeUqV4BUE`Cg5# zj%TrGCBd71tH!0V#*MoTfrD}0aez)jOwGfBYSyN%zA}+!?+vN9uOQx`E{jX$- zDBW0|WiCJB7f`g_R7Nv0xy0kJ2~u(=b-JPTj(<+|#CvvVUkE@<0Eeq&&l6UHv>75v z(7+;M_$9P!7eJVSg8xQPNUJKZa=LnZ+VK8cJ=@1D&2N}qT9>5&D0 z>%&P-R|(giwQ|LG1@Poylt_MCsD}AJ>J?E%y=Epb?H)c@=}Xr{z?8Mr>xIR{uKVL0 zm}@l>S4FsL=H#1J@2*cz`4L{wk)lF?4J_m13~SQp7L+q`G$MS+s^KgXB{2UyIV4*3 z9BhIemc=&`XOoUNOub9uRoU}^axsWcvXRpj2zM!{hn4qHc7wbo6aB+ZGpowoVV-j3 zJJeS0A5qo6a2h1SX`I7w579<8P&nmLKx<3gAl|sK)=cCDJruua@;$=*F{_}N&}>2`=B zJd6Yf)v&FnpH{B6c?9qB?b93MOmi3LdC2Zz1jQai&P@lbfW-&gor&1x{8Xsfc5ZIq z7qnr8xx0aV&hnc7o---=^Qn)Swr6SNR}$KD;~Urh2>y88GB{b{l%c}q?d$+6&tN@c zhKt&}c67JF3BNJI7xr|$w!Xe|_uP1*Kv^y<{v$IpvznTk|BGbyzuQEb zp|fQoRTW@L$HvAWaeYCpVp%twxw*M8Zi_C{@wZ5TGox-Bg+^13O#kyO{C7yLOee5h zrvY>FDsy{V1VuDz{P?OV0!Y%(${JT@T8CAZ!y5;np(uaL?}IakQv@vuX4LFWu$IKR zu18-(SqknVGc^{NH@CNcU}*iE0M!NsSpfc1fJUJTG5Hfv(l!gIq*_fh?2=1>RIo~^ z(jIId`_D@Je@?sje?hN!`-;o~nixwR&a-w`i(7f&iDwS*b>Y%4XrcHzQ*MjbNXU7} zk^s;}k4%p%Q-k23*sItPnjc8+5U{^T5Cp<4Sj(D`+8c;PArzMUXuRq8oc(fPb=>i& z-Iip=yom4I;iu|twad?l$nni!0KP7JR3Mf0)>{m;7z8~ysx5hibbkIL*&;~BFT@Hp zt4mILlFgqHz1n3a8#4?G)fFveMKMIDp}`vGP-vvm9%lwEc35_+{wx@PrHYD9-so-{sOKqpQ3csH?x>a4AaYYJL2vY1#ZlYjmHo z7?_+8VCdBYW#bLCcxOf%x{muj!mEPESJgvjTYZF?Sy%vM%ba$gN_%MgC~3&5ZiLb1 zdv!GMre%oxEo~n`2gl&7GX~~wlg8IE5-Qy}J?mqC(K;&!m6yncHRM5?4Mk#^;>tuJ zDAwQ?(hA3-K9NCSH#a~hfDkAo%gF4OV9(WIO;=Hq~0oy!QMnt;vq=}RYUJFKNSE{ODXSt?=&MhMoDwN13CEon`LjqL_pmzg#x)dO%pc$LWZIae9 zgeq!&R5M;=z4hU`VtDo7;`X2y1Ooc_i{Vau5_3TCPFQn!dUbwJ_c;j4o7mf9{Y}S>RyQ!f1P4n1R{6U*V|%S%@{9^ICO2C0=Iio$OJB59q&=wh;sX&ro}L zX(>q4a=)~&U;t+PdYjpQ=2JmyRX31g>69!Q4+kp{1|2t|s$e)sMJg=hW#aJE;DJ;L zmi~ShWAZ)6j3sw~S{3F;az0R3Wf|IV%+1RS9DL9ablOA*G^G`L!N2im+(Q(ifj``d zp1c2qS`Bb0WOYP>MTO89ib1&xbJ$$=YUw>ugvFz}nH+IM4`;m-%io<>5ct5LYHFI@ z=B$JDB=$PFO>;V$b;X-0k2@m=?LNDWyZwqQdy4_8WlBd0A!GrJ_!SL zrK)KpIy1PtJT0B*wMemG#euT^A~AirCbKV(R>F`{0W$>yACp;pu{FJ)>YhXIrk${V zRTT=6&4(FU+F<@#m(tI#DlD2fNFt_wr2lNBJHOPB{cC$`e7qurK`|prbMzBoqGIEWF8UgVwHGFT?rz_e7MGeZU`cLOu`)o(#}8P3`5&K)}rR z4wD|t7`K#>mWG37w1D_t2<#CN5rNHR^y=J^>T$<&&#y`cu^Blef7%96V+DVIi#>sQ zM)w{EKfs}AT%lE3r-OGJk`m*oiywXc#C+Bmh6-h}sBbvt$NE3L0NuD=D^ao^_Z4xN za6)e7C^H0*j7W(>jJUGaec78A6SWz@&c1`gGKE`@w7X!bgxGgS^L{(`ruS|PQ< zv7rUVzbLdzcP;CvF218N4?n&GLrZ8pn)7MP6w#32X;^a>7@!ZD}jT20=g*(pKipks^jKDD9}OBj;D8tH`9&+NHL=xapci}4M;VA0(;>7M zB!<^vI_X2S@C_kU0;}M7$d3YUqo?ss9FxYlq20xa(}IgxPL$pEcF=xlJ4kFO|5IXy zqQ-Hp5KPY@T(!42J^^j*+l5AR$GkqvAOj2k7qL>wE{INtOe9C^1N0d+c)1={zp}hB zls~E)ajib>Ku^VhA?)^|1CgOOK}C=vomS+`MYtkCAMA&7Yb-{N2ys^@h}l+oPMZhm z-Q-59L1`)Fd2?~Q9Xg#k9S*F>224fpkL6| zUNeMhklR!zbl6;)3hVn$-8+{QUr}f$58ubd`C?bl3>t*ZL8qudFo3+gyyT|mL8C@+ z;0c4qO@QMHLn?Rd8*1iu*6Hiy^@|bZBA<01BKpIuOBYv6DyxQ^+ZAawbWiv4b5rMU zRiWqhuIF8Cxv&FB*^-gR2eN0^C6egItf)G}wz+#H{ShW3sJy}V+Jq5p+2Hc71%E@2 zyS*L98o6^_c&(&zC$G*2SwS)2a7FB^jx=i;)5JGsjU-_T9b94e52-|w!1;K-fo$P% zD`ep&GJfdohlFR~1+K@T^!!%dzJ- zutC0l5|mU7u6)bQ@6ww1$9I4R4&^C;)x(Ilz|YB~O1lySrdp1BNdZu>6G#b%vfpL0 z(?h_ohW1mHEI%MOxY-68|1A8LWc<^lrJ2lZtD&iS?_jN#1rZ)^_|QfaY31_l7n)<#ib=VmP-4@A z##9lpYu-X2FL^`D9&ZegzwQyW`aK;O(F|H-Lt-~O0OrMdVIej$AQnAVM zy?F;lF1sMZxU=!;j~5)dfEWV$ob-a~esv^+0WbkA*a~3gJ6oDVL=(S6B9wuvK8p6!c&0@gjm0aEx%szhjsC_v0Q0J5SBMEpagvg400P9 z1oqwYfZII>n5rvUZ+;J%0I#VOm=~d~&1HQB!p$|JJ%2v-c`eet_}y0BD7j2(t=eh6Qpk`*>9{LxiJ zy-&l-i1;LLZM{CV57F(tTuuuSsezy0$7PH+Y*UupKP_GRWC{}e68Oap9GKKa*7xPC z9oR^u9uT%@QKeLcx+B;&lI&dm%TCsTH9Cww%;AT6Xikx| z$@ehv%X29l?sT4MJ5jzyBi9uUdAl5b9PxUm-j~rP2hVv`pRA8Z1bk^_nD}XlXU%)? zOEFX!5)aZJj5;=t$u#P^w>JTa5k5a{Wx+=rK_5wOvV9_@sd+VB7SPsA1`D~2`Ko-T z$@HLVfef#H{(wMKAccjGAUkcFduD9W>$G|D{tGNb&~`D)V`z!ePII%g>^Z3$cS(U{ zU3tc&&VW)qg8xo8y_Ruy%FL%4HDjJ(+lKtQI((4N?0doSE%>#*2Lh-#(twqnn?%+5 z*LQ4@(;=Q33SsAMEWo;o-_gkK+d6eXf(&bbbaC5FXumpx?Ei?f(2nNBzgH`4xjU#HVisR_3NLKV|GL*7_DG ztQ>61R(=oo&<6v-I%vTp1CYYudCJ^l0lO|N`Gur5hKX!(m=XYjYi= z)#1P$sYGcK26HWItVSpT$}(|N5_gpwllqr9c>BpcC9iL#1cavQGCtqqZYn9U;Aev8P|BMvBm0>%|$HA-{)Sj|9FyMvRP%DKn|&-OI&<1p`(e< zUwNp_%?hE-O;aY$eiVp{H92jg?3!E8{*>|hc-6vwiA<*d^GNOF?hf1II^V`o#alRK ztd-}2h@9l9j4a!JzkGGQ9~2js^f4j!i%fXn%*yWP@(eE%zOO9z3a$iozMZktR#>X1 zJdvv~&yqwF4GmJN%r6f~nHlPR3aR~2nB|F@kdOeq17HeF7!d|q5hxeHNMf0nHIDux z!kr=JLjnQR*MR!^dXI)YZ*VU-K|69_v1?fJMEmQnzd&A&I1a8IAWmR)lAxkH1lrBd zke9>(@JYY4ValNG_})UT*x$p0@Jw`uc z%C2ma_G)+C=$uA!xO8$72eaeI?pTl`dy$3HFDwZz3PKv25vfX;d##xv5Dg%KI^*c- zMZI19G}%*LED_pJ{o~`J5xd~Z<43cBd&(%B+*0cH*mc>}=8KU7lc{>3D5Oe= z-Zdp2SUDdXJ`dAlDv^^1pTs2|-8%br0PowA{1`s9bD?P4n2Hn<`aqr0)PmnGDMjpI z4#udx$BNpaJ|B!v;$J;RKcc9YOgys=}E{I8`Pb&)rg5w%2u&aHJB2l1xYjCdF#U$@A zVcDhVrSroB>=D!{PoyXOyYl7K)zD|g%|K%^1TS^S2 zS~9z;#=t^)>7=Ke%r~u=e?P@N+KC}bh$iCH#=@qvL18yK&;DVI=}+5jh@7YLeVeF# z4_AVEaW4tNe36`GMbvh;ovHA)!yn}C))~aFQN+M+r1sG%c7kB3IJ672rFB#`I6>+HK`6C}-(SbA zNI^hs|LS=CDyr=Y4fN130U<{q`gjx?4X};YQRv>z1qdI0CD0!VpJUthcI4oHyx9LV zt?rEDP0FkWx^As130@RM(9E@ZU_Jcivp?&JljvnNPg!j{br7NcLANl)v3OORcfpSS zzCykdq_%!L{(SW7tMT|<8>uW6tb-STeiL_Jkvn)b^9HtU#6PKjo@q;r&lk-|^0|j* z&f>2?dSs&U^rQU90v(h01OgXy-Z9;Ot($%>RobMTBRR_*UXv^A4+zJ4+@pK{hy+pZ zrk!p|SaYLCabSk$iqeBD-PD2kF4)MCd55g)7asKE*J3~xGy8=fz6x8|Ehf`&xwE@T zCz>TLJd-D=ds~y0V40T(UpWlg*J7`oF0H>}I8^^_clc_6&XIA5rm7>^f`ySISvOzDk0E*$d_ zS9YJkS^NP(Gov--L};Cq8Mr#gzSa22A!vnst-)MUc8i0Fwk?+YX%%Yo)8td}lT9x1 zGnCSYo!-J7X>38ev;3`gb})5ts?hq4DumEMume*(-b~@0t(EkrI-8M)S2RDa`=n3s zLzE_u+k8f}wG-`^_9TIFF-6d}*z`8ST$Djw*&UWZRxWHj7A#eNeJoBqqY|wMJ|n ziztK_{ZqspY9QbTJL1PJWIGaAlKAJL?9nH^JH{9dCC%@ zlokjcHup)57>kxg`(eeDK03Hq0ZL8Zu8rk_vPVtXW&Y0ity*}Ma_9lPx4b;KLXJ?<)SofN8 z=T=l;GN@!Ictrsg`*ECKhVve1!|Z<0v}KN}Ct$bKjp=(7lz2)=f(cTY;2HnY=PX1H z&L-@-jhuF3>g7t8utyaf@}P8L%-hb-85uc2sF8J>{p#{IL9vfDf8FvX`7ziSWYqZL zu3qxnsqnMQ8lT2GmgK?vP$iC&=N8%P5=PG$@k*kwd4DmZR_?g!d;^XGQ}VEkQ6Yvu z@D_My?7>R6{@}|SOeiMDUv{r@+IAbXl=_P@oMA(_Q0_RZhU`7Tr4meg-hjKQBQnFj zSvV>U1+qsK3n%xkr31aw<{Zh%YQ{JCyaFR9%ZGz%8$~%>cC_9zTr@DJDQPA@!rf)$Jx0q#)r!)DpLh6lLzu~F}>#v}c~8w2E&yiB${6 za7i;&kks)AMXV$e8F3uer%bXUM2vzvkeQ1)`+w@gwK9(`Kotr)aFqSod z9^h&CK17R{C&hWSVjgWf>z`*W%Gf#qo7G4&pE#?VbLq6g3t1!h$IIU zRz+}1VvLtpl^x{UOzYNKEJNdEIU1z8U?ote;>3b{P7&b|h~ETgTD`x2I&(B7|3Mk? ztWLz=P-i^8oBjuE@ED9lyvI%rL|a3pJJim$XdQ4UBb87*&^V~EiNwR^z9^g=eW#%bx;u`F!baiO5K#Z z>%Jdp zf(nrfqixA>bs!2Mm+}f-H>-t}o(wBvr(}xtWS($eq{XzwZ&>e5-;4vV2e?;ayBA)( z%YY(dzcGOScgAh>YaqU~9E&r*JgAL2IP)Xjpuf6P*PbgIL<0i+yYO)$UC{P|44arB zQ*3$l3lTvk#Yi!-Zkr!wU`y@kk6LcsCPxI&)rOSc=DQo?;1B1nF2L{G6o!(e-h|Qw zh8sk&E6tL97)mj4Hxl(o&W@Yn+I zqV=Q*+mNDh%U0<(Q_ikPd9Dn;OwF9s3fE68WDQ}cq+fEPpY}XKwjQJw+7B;z{;C0q z6&~OK-}81o7k~b-e2bjJj`nE8+Zy2h=v?F zY!#zvU8S8}A)&1HIihwxw+*GPe{osDWdj}94*`>J4w%1_ISfKsInG~l{A0v0KAmL+T(L57qZhk3tO z+7NBp$sBq6%U8i^BviY!GMWhLvH@R8!pqhcVZhFvA$%-~<}4mQpHY%9!RTR+gw=u_ zNO~vaG;BQo=&lB8sQ?%EH#%;5R}cRy9I(RxP8ld=MMg$~EkBs+pfkY5#f5j6JoKt$ zsB0X{vW0V4QWN13Tk*p3k%Sa{S2L;7`YJ2|`Z)=a%Vbgn>SK-@%E=?DyO zcXf^GfR%V6!>>uB+d%RBBU;HU@}v#yS+jSTi(R*AcrJ3c8qtp#L8WOg!`_=%m`9SBn3x=0djpEn^`B;EuW}LD0?XbIeNKaA(bUc{ zu3IW)MKnaE3B=-}Rj|ZWYNR1LC7+7y`xoI5W~CJc3|#P)2L!f%at~qt#XT&7{7XaD zg#3$p$PD=x_YfcQFYY1gzi|%%6z-om#s7KP|3|K^Kl?Jw7sQVkTFBF7K`(y=TJcNr zk;2?F-%s^|0mIp?2LETk*mb(+b1bWmqZ&5MuYzj$vHJ@6cKvF^pAK$(e25e^uv!A^ z8~6r4D56vaWn3JzxqCnBKL#ZhWx{xfnI zz?SUY^%G;dm&%ArqK)_+?_H2zz|uqprj$rb@-oi-en@&A2$~A!5YiFRq0sAuY`jGJ z;@1q%MK=f~QhSPR>4=_IBBhb&9p7^qbkCXKLX!QOGVqlFxqcKCsDbk9{7Z192~{?V6e19d2sia%kn@`ar@IGty3W_G^`fuf+=APiJl6n@PzzFbxw^ocFnUR z`Tp2A1Rgv|@S7~CXb>GW49~0Vxv+>6rfN;}(B|q}>5byn8?7ekV)%(BhI}uPp6qGIzq`OnP zq`SMjyAcEg38hm?y1PrHyIZJnuhNx*fnK39!Y=3gALnzhv7CET*ns z1cCD$-(V=y&7s1-_`#tU?h;c{)Xc5j%w>%u3;pd6>cftBBSj63In*=4pN@IS5jfDB zb(|`^hE0C>m!cmGnFWdq0(R$Ro>rzFec5q3oi&Qe%+3xhT5$2XfD!x4JHr6fu8#QDG@_Rx-+wu zjO?&u>3~l1nUnYpB6omwJrgr?0FaM)hg8ynn+SAVz}mI`?Kp@*igGdc3$=DsGK@ht zPMTnX)Bu{59u8%G(${0MpOZB3I?_^JQeNl>EId@Pzx-@iIT*MyJOuvl-%Nlz08VLp zE4L1s=|IPK$du)f8zt;248F@kRKP_Ncp<&P6N@SSLOO$*IaHh#OLp79B5!^sj2(N901V%Fgv?Q>kf`TPpK4s~;5nvij2i2iA#dor?){;Md<=6gqKSQQ!X;wgu%I+qL- z15t*dEx3D{-@8RDg1ch@{swHgapXdUGus(BkLh^m=enDA%lilC||*{Ogzf0Kdx-8)+sMUlf9ds1;<}#{$qK0=1+s~(t@YcJeQ<7 z^1>9OH0^g-J@i#YA=@Wp|KvciSHq>gtSxtV$-2JJMGuSe;Q!38Z_D3y7gV1q%Lprn z`^j0jR4g2VQ9&NVq;JL&7%&4TfmYydxBaHFi5Babrk0k1g2LB{efkX$nBji2n>R5W zV}kqFrFiKq(R`Eo`wW6Y?W4^uSYa~DY&kMjSB+`!WcQh#Xs^x4t_!xK)$$8~5U;-Z z5o$hIq6Ol77E((1R;|m#b&?%MewUwxv`s6@^~u)5eW?bkq^rha+oBMe2}|_3YA=cH z>vG5!5n~^&A6$(-X-(PKco3Cn01<}z*v@PYPn_&sQM1nacyWhNVIXqg$U*ts!>MTr z%*$L2(;%0~0mN|u;oLJ*ryJxWM<*a9gV|#MyFc8atG^KPij!Ki5BZQyFgD^pFl(6a z=F;u$bSvSpT0-_^#MK!gG9A2&CW2(7XJk#%5*q7sZWYm#uCy4dt%d#4ntDsuwPSNL zv9q}MI4+tSuf=N|OPZlf{1lD_PZV5si;@jVk$XxOp2ju4tV&#|=X!c?jKvo~eXpz?vp)mx4%P>0(2q439&X0+)FP9T~&nMG}gi0@;z+f$Bj=G`0f z%n*T-E?MPot)EtNBXIuwm=@*F`?4&ZefkJ}nh z;t5$;P{Ca7fE;Dx&5sdr!z`9}?^4IM!IT7srbSTJc`YtZqd?qB{)ssU=K`mUUVLev z;-$;{N>Pc(NnFbH3mT))zBZ58d#9)B*?scaQf=$%I3&Pkx;QjQU(FD}=XQp@Rps@f zRfGQx>c)%&;WVP^W^yA-rU*IN`PrV8u4H(shxN?loXe6mj7`%P%Tetu49M0bXKv`< zw(W1d5fKgY14Zzn0b+>#@=nvO%lAM0pb0}{>K0o+5m`_f14E}NX#8^;?g%JzR3JlE z>Rr6Hn7sV%WD?72EyqU8nELq9_#bCzs{KO7%84&})DCMb{`&PLa6ww>MCDJNB3u67 zB5svCv)Cy+U}paf$@q?Z0`4d(I~&Y!bS1{9o7L87_@mstB&Ipz_B;k}%=P`5mAx6% zm8$LZpBH7`FNvexW}k=0$+@u<|n|t2nh0;Egb~0L?=V; z@=c)(1Uuc(}{1NKgW_v;wbK$&m??RSgS@}7Jx0zV}%_(K4e_-A#_Pu>oKqW zh}EX#3=S9~pke^;1tA67*H?veu`y@R39W}7tNvBJy2r_H+T-j|^lxZBRR%nW|L*Am zpY8DQWJ|x4Cn!LAYjCrSJ|rts*=UXp`av$%Q+P3u!sNEo1&<&g6EjlHJ= zQc}-k)55M|U`|}1y7#%iUlNkI%TVqI^}RdKvS zRhxO)XN2$mj0jzn;QVSGilY7VE&55S|eW^AM~m%YEMEj ze5;H-7n~(LJ9~q~r>4AS$%QipS&amMisST97~ozChV@aYL6uz2^(0T_VkKo{o`d#h zSb-bT{_`io{QSIWiTk4y5fc!x`9T0;*K&ac8Vo`3BQwljk?$G-WN-ric!lz65eAXRb=*5Lj*r@g=`Hdv~KRi!Ee=LN={`|R7vB7<@M^^&3K_ZF}c4*dl)r*h3 zFGT2a!+YS`r`RA0DoncQc8Odnx{pLDI;LulUAL48@00G7Bp;PeHbwqdh=_E(xZ$x% zM`?iq4l8C;o){ctJ(_r*i^Yiz^WrPgpL4Nr2{9BLn6|7IA%@{q&fZR2>_+;y(Z7Qt z^>HSMni&y-Okf{JXl{aD3ftE2ovyH(Yxmdyj&vjt_xkIw)X5)&7H0ty)H`zP9@ z+zs4(f<06B#!2K|4pUtHnB(=Y>ETbh;EeH;GVly-i`d|&(ZJH78kv+pDPWE&lTbo9L=mWCT)j2WwS!VUiF&3 zJ>ab~I3ntv^m#2p*thM**I@RGp;Wu%PAUN65QgYKWm>Q>`}{FHY}$Zj)51!*|94#D zxa-`lrt#>5K==9taHfm|(QN+)#i;O$2tiX6K8Nj3(0#ynre69gP5YPN2h}JcUm3KV z>>biS?8+H8ZE_=vx(&OVGxkuLwkNF5ANHE+@FU3xc)~T-iqaeHS=Uc2L=SafGbpWt z0ciEHN@_sS<<2gh1q+KTmBR}ST_m+84gy(}WZmZq zwfuozPRYz2?&_R!kRL9clj`SQjjlE%+x%OT2Yf2k2Sf=We+yg1MYt~?ZD*gg^aRh6 z9Q9ZnKhY<=6dcM7CgkyWAvHQwz-}8{K~mg`%v2k6vP1! zsoNP@{)?}~w6qqAdoV>il32_}$H$pj{`&G=UXp-B>rjes?ci4#`S@P^#Vf3B%TZ3- z!>c^Y*DrvyfsvIpmbGqgP7@o`~o@;ywYU!XmFdCS73zLC)Gu!QQ zBtN4N;DL@N3tj@Bll0CpIyT0LYvO)pvE)7d*Jr{+D8fv8EO_a;pbemTEb1G46FA-u zPNq0kzO#Iy8oTBwa2FeT%Ea{Xn;6QEW=fZZkTCrIb)nnm@0*PY#slbU>yX{y0X0wY{Cg&x9~eFd zfo?5yaBsJ#4Zc-dco1!Q9r$Qs(O4Z%;)lBvgxunUpL2rd4nRsbV7iDV8qPkwnB?RZ z;&08IVJC-fX!;f-?c-NEd`3qzU3OTbjrKDI6=L%fz0_T4Y`D}Vc(7{RI2de`81G0l z6h|nLo)Cv%6@dgZ;P5;qJy9tF0tMkfd#jl%4v?umhMA8a%R$fOVC~Z*eh+6FXA__e z=4#2U0vMEmzQK1k;S)$Bz{IiwXf9L9xEJ9Bo>6UpRWY|w%5{`H>)~E4TZ3L zy4K30y#wJZ^dWPRl55w#HO&W)B+mKbo@w z3?p)zw&i#Aq=f~nS>*cNesO_5KVg6^{t&JEl=m}%?g-S!V&yPwkqoeol~wN(Q4Bc2 z_AU9-Utpj18KO2cocirLA)H(rD}0v%i!xp;di3hWk9?%hzx$Y~v*Cn!@URH*eKTHn zqW*09vp$^iPEdtuT0O7=1IeeKEBd3H-k-hZki5D(xni0?>*0eSG-}t?`I)O8e*UhP zfzn726g2%EojWcE&2Qus6qz&o#1i8HNK)MV4<}JEkxR`U=rBRrpylRJ3daeEcY3pV z7t|ft@#X~)-@AP#fHgqx_A_ky!IZWy;0C?}U=QE_kL9l7t~2+itojvKYijGDo8&kB zB1=bdk=eU?4^F0t%kS2N@BNw+oP8@D0MnSMlfWd~fhXp)Gri>Nez%w2P;210 zYC0qm+L#ey%G#asg&_+%`>h@A5&`R1%Z0r@4(gLN(fM6B%YWq;6zNJsUlCTi9^|%t zN&uL_??f*ze0CL`R78vQ!!5WB4x&vJiDE44Z^^jw7|T}uJ=pG%i5W8LwZchta!b=W z^2q8I{42*8*qdS}9E*}m;GY=29+N(Lc8K#1-Rq|-{> z9Y51md7cYQ+6peey~;lSQG@9AnzZw0dgV(jkyPv<_jcnMLHiH@H4*ZcF#TN#qQo0+yZK=%@_rG3# zK%wYyeN*iXAdQ`gFR|0e@yLCu^Ll9OWlh_WR1sQG9*E z(~g@lGuX>k{F9b2(kO~MRA(Q*0W!Z z1@!yFLk~EsT#)z}3%vvA$IuK(;(u{cb_wR17-dO>`;+(xre9{X5 zg8=1VYx4ymtbP(lO!BFoc&B2CQs9X|#8#=`FU#*$!0wLcL~1MuNw6Q3ejYu8;6?`+ zBr>=PsB66#vk+HS!E*6xpOSusP#uP{*j$oUN;y_)Jm^z?1@REh>Hc+o;LDf)pI|DD-cQQ$0Ky{Hu6ywpVIfReBb*nV zYvIQb2me45e)-;Lol&O^X+5IVTU?aJf5|pv;V>BBEARkM{s+Wb0ljn=o~z(-cFoAe zm2^}N`_5s`e-|wmeYVag^8t~%SUz*aP5$aVh5#B#?i)k(FZL3QtA+Z5Zt67OMkgn~ zZ}NPKd(Vc;c(J02P&Y+Pi}Z;S*|6}D%0z~F(XAFW(jy?4){WJVB~3KOjF%!Tf7pHX z)1GyCb&R>nW`P~puoB}%3`@m!uG+VDYB9(3v6hu*PVB<6Gk^eiljj`_kgN_ShcQ?x zxyvI7VLum+5XtCcGA~4yQ8*?1#Y^`76_Af*ObD~$y<|zWSFK$6s4x0{#q_cZKv=0{ zQj*C@|Gp(HCgMj*j(gBM>hWmr&9|j0M?tR{boA$ooI9Mu}yVp2j^`hk{hP4uqZ|IL==;5X0E6uR=8* zXQr@%B=C#?uFcmkDC__b25iLs{>BB&A7slg$=n#S!KAXc@P(0&`=is3M9KYKH6j6& zLPyT4g<~I}XoR2aIRv@^efe_W+78{k$EizV#9e2<`ir$=h&lE6U!>L9$FvDu07zh9 zY>a?SuMMN;-5{A4V5$?~+63y{u=BhX#)iABd~g4xoA}AB8YO1h5?uOJ=<+Ao@TW!9 zPqZQ>OiWDp2i?#H(k$5x@AjjN1}!(@p(r94h+%z@id^JeD-PmbM{q_*`i!D@gCiqf zl)8>EadJKtL@NgqB51YS@t^a?7j$8AFhP^H_9&^sm?1X$o?Z|_rJ8FmK13b=_7!TJ%D zK>qDGf=OjMtM)jx;rL_a8DV_{j`ql<{zL%jd~p}yp))nLKyb4a%a{yAvb`Od7oiR7 zV@3_&;n)V%{vN=lfY__ykU!#VdjytVrCRjwv+UU?ED;k@2p8kuX`GAkLt!uA8|s`A zAwc8~@`^t^sWW_6d1|K;&#=DAnCoiu!IB9^5JF%V^mL=oJEVdHaEVu--yTR`U;yZ4 z5ddwHkg<~!z*P)IdwRyQWIJ*z3=9E5_>SgYj|3+e8200r9jW;y>QjpRJcb0# z+_v9Axmp_r^g!GU;?!YVMa4@XvH5(X{U3m$N8#n>h@vjKNKsmyFJbe={wd*OIw!#L z-^d{PKa$hsuW>&v=&Guhn^xX=6yvVEewd&HzzPtkiPt-H_FLTKQG)hdHrCn);_U=o zNjS)-EBL2&zaUfjBL?8j!AV~|-5j`nvF=neX`I*6LU?g;!4>|AvJH@G$w)+qWY714 z+0x+5kE&u5{G#x_%3~kf+8C~&M}DR!D^*=s5C~-^72p|+nC`@6m{^eLPbwvX%8*F{ z)@UGh$_BN7(eqO)N=t_37b}Ii#MIqwdDV@xhpr;o3Y1}$8&+(rtQkNKvHWmZ=Y%$= z1M;Oo?r45~e($bJ0%&yt_8BQd@kjFJxHSJ0J`t)|@K;MEqvJX5*|qUAiaHrI&cftq zn{OK9M3q!NRZv=%3t>5&0W$+q02y8mj~(v+iw;V*v|;?C2`eYUxw z2@8E{aM~^hJ@|=3TdCSkTp)Al*d0r6HFv6P6kM1&94mEHGd2D@eCmuHk0U$HxxMPA zu>=5O^mp*Ao z+bKK?I9QD^_abk4~$8>V;QVPpYW-@Jbrr&xJBP9(b?bm(7TV&)pPRQnv#|N?MsTCOO ziA}GDVmjTO4fXp*=rN@8Vj^z7ZNNm?*~)(W<6T1#TrXeLHN zLe^hEBn#2>&_$9?r&U2+1rbzLep~S#+ZKMqjgfimee*+&snz#+sqa064`i8XL;JB` zo^k@A&*aIZ?zx|VYv*)_PRiKH`b9*u^DnEg+Tw$Y` zAo_SEuaszg9)C6?@A`nJ&2htcC*UIn3NC61!ebKli+Do(Xnw>fFjDYV`9PC#8aM!6 z7k%BTaCf@`t*k@%XVYav`4tga7V>oQ)o11=eN!*}Vepn46MD@J3-SQswd~5uS3q~o za*qh}QG@A`KprqGD;t*mM8M@p3Z!Wun*IsUGSR~FqJJ8mSh@pwGDx6Uro&OI>^23y z-4Or0bYIV3>Rw(vpoMjU&+I?31(u=ECBhb**`-fFmsI8U=to*tN<}x`Wb^&YpZVdf zEiyYE=Yp&RJ}?#BS}p#L*LNhVVcp>TpGQcWMOvRLS!|y5sI-+_?Ro7ShCe-Xr8)Cu1r(fJy@ z78Rd;Z06FzkIoOP;ah_$M3=&4lsl~4kaOYxP`*6dR!Y}=S6?qs)kf^&-ElnARdd!| zi`Zh0oU7+Pj)CY322;=;Zu}APvd&oIztO#fYB*v3i|z&5j{o22UK}46LFe!ICy3}- z#i~U>EFu_V+d-)u4uX!34s)`vSws4X9tS)Lf#CwogDAha_~XE4zdHeh?|K6rSRVkz zD;xwE(<5Y$eX24WF~zI`*|?6!eh6bi|IZOcoFz{cBQ(l>dql`cMBq-`Ak?l1KI_Gj zTlDW&WRI$H^?gYFi31VeMmtPv2NvqjOj4pGhb<{(L;M~3zFedxH6(}K^dfkBzU?M` z`xpgFL8cYKQWJNH| z-UjJ&{+JSN*)qr1yq>H@+sTw_Jrw2_RFk0iNZyS%4IlmSvQsblq8=kM<8Hl)<}7$+ zDcG{H;7<=&u~|^Zj&Y*t(b2*5LJ@4o&gVb0)DVGu<&y+=4Mmg9>G^Hm?v;{=(?60E zvU4IUjs_6CXDP0jhF>Xf@t5H{MeRkuv1v+&^S~0K24AmJi2lS|A{>pO4t=i zD-}6 z*E#1OmUWfO?F7E!TWkhT2XV#cxRkYIUzD}5I7XebnOqg+7?k^W^P7~US!G+ufh19B2KYAdUba{B! z_TG?|fgioy*^{FzPQzi+-s9jZf0a`*wIyq^_PJ#}b3Nbn*02ong|YE`ZR0{MZrowB_fM!(kl?yIuBwGUpH4PRBu?N&Ok4Ogjjg5_xLeN_(T(sa@*A2s5IQ?DqW zx4EXto0|`|u1P{i`VS?q0~+_D%uOupcgsf{&eKC(Jb%?sMa}ZsHu|#Jh*hCjc+r=* zWequ!@!k+0-SH>yUKI^wr10QoeU(69&{pbAzULS|e(G1~a$hpsMw*ms`+Jska%&m| zjt65jE~=)0;6>qD)ntoPRb$Bf(Dxzt-KOaQX9C>cE2zVoNE&>Id5JGS)EECLCTUW!{|L1|-OD{?w@I~1NNo9o(t3(fiG^)j;SFKkqOow?*eDh^~_f{pE zHIlGEv|_7t8dHcqiLNiX|L(c=s2z_+(DW@S5f>$fgz&!UQE z(I(Q`ZtfE=Cv=Exu0yX>tixDtq7Wx65KJBmPjICE49y$@-|ZYRZs@pvp7-+T&HWe) z0!d^EH1jGf%T?n+Qk1CAb^n+3Ric;bglV(Rbv1P^6>f0twpX5Y)0blX_Y@H;=g)b= z%#B|?4Co*?b{Ai5)VI17l^!i|uh!sSRsWiA@Y_jv*Xb}>WfbF?yE7^`*Ins+o+P(? zd3qcRZRJtxe=)Nq$ViH4Olj|Nx&O0*^Wy4i;OJ_gvKWbncH(;2t(9fB29SpxKzm=~ zmNeV12DF|;*h$a%X6-j<%gXUyOeW5Na8z*D{_@yPTbTF50skgFk!sJ)-aJ$^f*>D3 z2X!zXxB8mWVtJdF9u>Y4(llXtUzb2`!$0Rzq~261fdhwN zk=7CGHp++AONVGc_MO-M!$HK?wA&CrrJ~-^R_&KO1-=<@ zJWb$h%Z+|SR&|WR^}+ww%ujr*0EoV#X+`mI-xcPZXWnB|F2cNA0`cH=%PB32P02<+ z=Yth%Wv9Vq`pnq~KY!7v z(0FPT>q3K59ybrqwlnG^(FE%S2=}s|ch$S@SL?pJ2d;x@V;5t}wrWvfI`CU6@cR;Aw`*o=T>PPjP4 z-*fWf>tSPqQ&qB@-ehIwP=Z+?1Ty8`_i68&y0#c!-Np^!b|BNe@tkQ8p;r1qOP0%K zXcSdhw+IEi@(}B$n9)tm%anWGckN)Aq@}rRKveng{#u-0#Tut_TKixADjDdE={3dnVcJ;@=p^5FitbQYLKocVuiB zHlp4SyZn&o@1I7>x<6zkKdh7CULH(q7+LJ@?8uXR9R}E&e8?DX&`}*X>6RO^OyyVeJ(wOZi5!f za1e+*G%UE_>UrBG!t-lVt{lY@Da}dmlgDvu5jWUX5=vZep>pQx#0s>^s7S9@Bw*E8O4+3E{3f{LY(;6je(hxm`uY6MJXwx)p zG8MafH4r8ehbn$S^ES6G;){0f{m4_ec3LjDHpi<&#a5dl>-3x~C4~aTuZNt}Gbab& z8gH;jU&|=@4k(URZ_q3tw|QxP?d&m$Z=UEAc5(f^SO8?~aRVl>$u~}t3Ov$eY0~v> z@~l2~8j!t0B8!oLJzgOt`Ga8$uFEM)z;!78%( zc>in?lC2&+$ML3!fu_h#;Gxtuh}+bUoxZt)5k)k6?5nIJbCNP(em2{245AI%wxqK_ zqpe_PS5`T95Y5wx4X%{08xLZMng&u`7P-nKsdy$gp(kyxe3|q`zv6tkvxYArn{W-i zRUi0{!Tz+vCvt$B3f#a?&|p6xkQF$Df1bEQ{{967@><}Z|M36EU-@IHBfv{(tDE;D zo=3&PHX8j!AJP*tzqHmG6D`x$H!OOwQxiq<+lYwEZHoJaizq-TWk=60R=S&n8xh^Q&BTA!~p`7D_;ZbP^!lqtV|x5+FwXb7 z%BRu^zJ}gH;aD__x(DyP5_9G#yqr2%VLv(^nE{UcwKZ|?FwMF~_&)cpl#Umuc~ zp9{-;_<~2Tth22gWK>T&?*}@m&(s5MivqO+|D#GZ18bD9-Khjfk+^;-{}`mBjSsM zq%FR0U)@28@x5zSG*mm;V^Z7(65qs==&ZxB>rX|`9r(ke3tZ@1vc=52Cy%+j8=~OSs zFegir@{Q93caW^!7lVZwdL*J~@z)+AX2Yol)n2KkrS!PLnJr#du(A7}p;__e%oui> zE}My`vOzzzI#p3YAuns%zraZBy-7U0^yh|G6ZSGnE#PRF$1)t9ABx!Z6XHUHVm;Ob z8_1VUb<2TJ!^O>Q9|#g^=uH&3-F~NniQ^IrfJRt~U(80Y;KVB&TQ=D-vLBk$L&cQ=1Y_(A7b!Ds5>^?TpbUz}( zoi;sHq*eoVS(*vp2E_t?YgLtxD_^C}%sCNWSKfQhZvNRUC|6k{P0i2?B1~bE*Cfe? z#)Zv4TxayJX2`y~=<{gEQK2n35lVP;AE;y@dGd)FU$x*B%HR$kysO5^VG5?#Ju36( zgKT*_V0xGZvskO4Ul#`MkyBtf0sQGC6!rAdK|4T^VFhRQZ7QdOkleeIj{sS<1W}^@ z86BKqft$>h94#9RR-x{ClHh}Q^JLOJQwpo?nL+B8ee)a}xiGlZc%uQSAGY z>M{F1>ts=-#s_L1}9n0PK|?k~N|CCP8+W)XR(c-cH$uGmTR>M+`+LcQv?6 z0}eWIgB@2G7i6!aij=7f6qDxohtcOi;LruunQU7e?{Qiv_D+}^x?;d;GP-W(XF)^sI}=btl*mZc(avb_9(I7V9$j6 zW-!m?q@(4`a~Yh6>=AFxYY}hRt3GS(l8JQQjJrzmATMU*E8|$57VSKKFM*_pqU{3B z$1GEVn+)hOIM^D-I7Odva57}%ydB)$NPSG_hWs2QTgsJ+hpzcRH>bk|AHKKjm zO;@enQ_gn~yK*EHH*NSXLt>tS0?Gvni{+X@9^9?;4qKJl5~U_o;HRgnb#lTjeQfvH zO!evEi?sX69x+8Li{lWD3_k&UziS?ioJz$KH&vgJ0GpzEgPH&{20D?x{I6idaOUP^ zxVizcwxxB;zFI&mRptvi!fDb+Mh1Mgg{7oEgEDX#tPE@v&z;Kar3$#0=UONQ2FhcX zHIWM{cj`Druq0p~U}cjYv>HKRMCaAw$Ol)?guP5*ljEqLn&I2q5Egv3{Xn0E$ zVx|g`fo*zmYcJFM4zddo?j*mps&`UXBw9OsE*zZrW^@#U&aAB#zrWY=Ug*}5_snrQ z$dP(7U-%@>b8kz7O~uxxv9;!lLK)_$Q(pviV*I>gLE(`G6;?Hw`lQ6$dNeWyk3mS{ z#}<-;XqGDlnJRU~&K%TOy|41nM$9nZ(YMfiqQ|NQ#kEIJX)V7~8ZsVw^IPaufGhM& zu*7TA#==~=CYgQR=4NEM@bH#j>2CbV+cG*HS5=#3Xp$=Q_n%lcxyfrH)i80FhYJ4j z{yH9G%p!i=%nfDZviGV>ucd^+>7Z7*=kJXHciTMhSMfdhtOx5qYdmVb-O6mdt^zeh z(4FUm{@dwGpE1~g2p%rC>2>H|@SB5i?^Wne@Ay#ewJx(q`Kn|)YDe8unjRam0ZDK< zTGP{w-q3R5 z(%pRFqsmC@<0X^wu#Bm7AjGJ<^Lwf!&VW_|0riTlU6D ztu47SZMKP?-2)*h}MysZJi^w9nd@_p=QpNs9qx_P4R>ZD;Nh<7jyl^s_YzSWX{>0vmks(z#6kNWL?R3tROZB|lGrBi|FHJ?~TWehU1;M!xwZ3ck`J zKUM&XO1*+notZdQaEucFh%?gAkfo~+4I=#mDP+s!-fwNtL_+Z>cdCD} zL9)~!-(rVN;_ddcL|0KYqI#{K)<0A}<#{U6ldKpR%Ahhd*gaMFhn7vdk?$OlD@>=U zK!~LDt}+*ipWM4jZ2`LQSrgh%lzW#veRrwDrn@tKx^6agW5*zKh4ns~x|D`O2qJH{ zWrZZ*<<$f$2S|+L+cjri?9W&o&Ud^_TfIko?YTpI53EpI9)Jc*6F_y(tt2zp87%X? zpz%2{B8pk|qj|pE=GUg{d%cOYuUTOj^l-`mRRo^yJFyr1e^vtLn?0&viyj8=)n_U` zL!D9(|4{dnBuHW0e64};jW;;r&18Hr?&I#!BU@e`c8dvy<;h4QsNx4}S!|+*_u#(J zy8Lx3S@VmF8Esus(oTba*H`x1B!c^zpRZ7A;y}v&;$f-ZT0Q5tPKwKo9O~fRbAhGM zrs3v;2dJ)lc~u+Ra?!N6SnmFw`=9Bf`_5&k$;6~lQqj$F8Q}!HPhemWMew`|IGfW# zVxaV978p2U&=p7j*ho{C-rU4vZPSYAPv=cY+=5HF#eJ;a#ODYrXYR%P<(~Nc^!Pf} z3%>feur&lo3<)GL++gq;t5sXDqG*Ylbd8!EPZ$mWL-BuGR(t4`B9>z&(k5%tH-aW|Y}era(0( z1B7D%_vwPY{pfRG9V7_qQQ+6&NNpBsWjgfbfpBK}V+}7bf!aGdngL^9jUV(uqAeJh zD2g7nL0eHeN1aA^If|~}aJpIGr0MHOGQCOonA_Jzu&3-dgFS0)aVBi%PO6a4w>N0w ztJjuTs7dja!#)@6Y&%YK-**a>q&RV18Rh!`9(!Hn{U>Az_gt(vONKF6pi%YO&N;Zx>xS9*7f%32FUUVFZ`Yd#5v&FnLJema+=_`VNk{LsJOr|$0Vufwy(zQDB2}Mn*xKZ8;p5ynkzssc`%<>o z$jbR@e$hdY!_8XpbkHQHwpi)(Tr?@>V6ydI&#&P35*>BdTcsD@-;dv@J!D9Zj(qk1 zLV7WvJjP-+FlINqk;Ez@rY5c;l5d?HYc-ZANJ>5=#pku zWj@9XiCj*xyn#X;@4x$E>y(BwWLzrL$ZUlEk^EbYZ+5qR~sgdy}a&KZ!~d;VlT9Kugj->!rY(3}BBX2Rg;wfK8fQ#N8FP z-wC!Ofwp)=SF3PgFWHw4&gZf00(hux?@1QP~)&J1~!axFn`xrHlT?T0)0wv zuTtL|8D+Pg=P(TAXS1YJP-ghLUnfCwl}_RF)dS_O+T=5?yo>wjl3?vSqV0wlHzbvY-Wi$UV7ihAM%9h zOCPo8+mf*5JR|6Y-`JQLAMc-K=p6-h*AL{&=ai1?(+to^6N@FQBlD}aJ0Uj$E;Q%6nJ6IE=2Sak)MYf6V-Pgc-(QcUpQDiJHH z3aAAtAf|>r)D`ud4;6`D!2Y?Q5uY+oh&@GgneyAe9oy!-8TrY5pI+p)&vC*-D$&#< zGgFp3WFAj!Gm_)Ngfn5{C(@LQb5DfjNMm^f6&NAoki~g)t_gQv?UDU@NV{au2gmg0 zevdhEhY$Bx(qCj|-b21gp7fY2ZT01Y^1dfmws^mc68Mgf?{!kda(ZbrY;~AGTq!g5 zy)%{WwCLEiUT^j0nq=Q^akP!qwO*8b z^*XaC)Zpz<1C9}^Wf%2pEH_|bQ@26h+kijfTy+(wm~#ffmczS zwXb*DN@0s|+}z)NdCqpVUW4Onmh<6tH0jd|C!5SVY71v|PlnMg2A;n_<7+Aw#Shac zq20!Gq=D@wg&1?iS=4H3>~FtTDOCgzr?GMdyE23I#j)OR#ZflX7K)yW7A+T_qiLkF zrTRP-j^DWRU5@`V+BdQiemczq77&)^TmrJH72ps}8XNs)!gC*_0->@9|0^6&mGl+v z^(_bBfK&@|&b$c&yTHdC?<{#_TZuYu9O#vmTuOlP-RNAEnRqT=h!C+(gQF;H*bL9( zy7lHu%H>*hwsucZOGnDU(|TAR{XRp&;Wc$B$FD}l$r*{0% zZkRV1E`>xQHUl};Z0TbK_Swv;0*D%oRk2fGy}*)u!>|1v{ppU+P;uKDKtM5!pG|_~ zTFZK;dD!$BI{fkp|AQ<3sx|4Z%SV8JTLrg8vUf(~y;dBK+~Y8r4LHEzY=v-7B;CVq zc(8%_T&2m)-8O$2NQw3B&J?XsC&0Z<{S4d)3ahG|hOY#Dm}HcI(<5r0%~f2Px5?mg zy3getE&y?W$F?3Oxr5?}$wF-_u-ui^8t~>tZ#UeqwC{h2d-8ia%uQB~^Gu&wwc;H! zJ|t1HgVE(D%KkTdk+{Xl0cota{|PY4wZvMJ5Z5s?n|qc9N6uJ;(LUrJ2*>gO8sX#?5J5hoE4>J6~d9L(MrA7Pfz zjM!3jrY7YsnoGB_8`fOkNqrofp02HK?c_7QNBvcFzN8gPT^@LE%^LDU@-9=jVn$Z3@X{LIjruU#s}PXGsL&pMaL(<7q$t|D3GaA}PYJ>(5!Mf~W+eNXpK`%il{y zpwXKf3P1^a8+%sc>+pVTt9%zKsYr(D44M!5y6m}prv!i~GXD!vtm6OHX+^@t zV%oQ9x{eQb9*0X!Y9J?XZ*Off!~l@RDMGhJg(@Gw_1eefS*2U-{?t&I_fqsx#aZf% zXKj7v$j7joY)h2cV=2~5s3Jv!DEIYaV(__&b>B=e^K;l2< zcQ|5?lN_aT{=OQ@fMNz!=Gm&){pX~NGk$pMN1Vc7t6ZKfI``!Fn80YBbpz?b$>oWw z?}YLsk$kl=&1H%khUd{icvQdOeW+NrrJdbO9F3YY@N=7Uz1Z%cci~Hy17>!kAdcH* zXOwvQ4j$r<%c8C3wG{9$J478#^o93J+x1=% zmXd8RTl8s)wOgQGFe}(mRxVUF=85cgdB@YvigJyjeygw_5>%Fs&hML_iW(!*5q*jwI&}S`wswT z^3BWBmaNergMn*XHPqH~8In#hsrK@+oTS%204o{9+9X|P4SEZzg7B0yY)o&cV@c7E zS7@KRz-JKW9stb&tM>KNCPNy0=|o6upv5;^-4a`Lqe0$NzwZXXJk=;V}f1&S8Jv`TzX^fuO$m=Se&K z(|?})pI`ZV9{yL(%kfmBzh?sKO&sbI64Co}*m0Q=V4V>T`L*nNmfsR-n zW^J0e>(t3Kg~VE4c2DU7uPXpbv6-tB%~9N~ec_rZpYP)F7KFaozy*O#F_8B=-~Bn! zOaNofyMB8D#7ZCJjVH$SvLypa*rf)A7?Fh-R$r``4SZT(LVyTfksVK2kCrq~woOB( zM?ttYV^%=n;-yUn*4jxuAU-Z9YoclIJQU+3bEe6L5=}Hf-&Y7QUn!c=^^%#huAL?W zh^fq82hmXjvC79~;)G~~O&ZhaIkl*vVj4;z{bK~k*-y6TOVU4;pSl~Vh}O$1I+0U! zt}Z-bsRA?%;D;T6nEH*GYv|2}larGtfBh;2Q@x9`^JF6dXu;S0zJrv|{C>Wo=^XF;J6F+xaro0YDZ6v5nv?$o4U^o!{!{^U zlz?~(W!R`Mkj8AI_4QW@vyI*1$mXBBem1(8^|NmMeWAh;k3Axi9@fdj4$v?c=M&$U zlI18p&MAHLRs8iBIJtY3XABYmv5f)eVpvqzOd|&Pm?0=V3Y<%a4X`FVSB+KYI+Q%V z1Rn3ir;x4oIA@lZG2rE(j0<+VrX;n!SJ<$m$aIC((>%a2J%5OvTQ!^();@{at0kXMo=dk z!wMTpi(2FMC+obY0(@Wl`3e|fwHJe95n|d&uXCalzK))D$*C!&DcNZs=Np&+%`t%w zu#-db@09G8=__mxG}C&?2J_E5lb@pl^*fl0FPI_Tm0iV=F4Te*p<%^r^D;h8Ek^qD zmChe$A3RrRFii$0{;&3~GpNaQ3kO0`2%s*yB2iRO0Z}3dF5rTSG(kjqFA6Bqt5j)H zHcIbJM7ltvOXzMygitSCng|J35UEi@N$!bz_s-7!b^qU;`DT(yX1?;y`=0N8p7WgN zc#V@R@0YtbyJcZ#@|z6eP8c*F@H^SX209pCazz4vcgkEn4y_jFZ#VVT}G2z`lCW#gs9Qq^PGS@h|kvmWR@D z)dxP8PUMJ)1DD}!bgKo1q28`@|ioO!!ZsaGb3Oz7mTNu=SBpnp?4(`xujO2rl5$xa&pQ|FSC2>?D zuj(l~eq1^dzNL@TsrAXfkrTOqPmFkodVp9wi9e;YMuUaGE>_{y#;PuBIBJqSSTCT?K7nVqzlamR^O164pkE(}vP6rWP-^VJFspTOwg# z%ar`X_xmY>y6Cx8kqbv*#q zQNh%d`DC4|A_Gt1%o;$FctK737xb{j?vTZ2@SFPplshBdOiq?DTEf@+tdpw&NKeem z7eeO0>Dvc;!B>-k^j+fyud-);U-3pm&om3i*b$tzA`1Mi*Ji0#nlPDo@%%&~Idq(c zPIGW3s_>*7Z`{%7PGHX*FoVGl{gcEt~+6wqB-SXEDdQn zBHLarF0(FykDQP(KL$h+VQbYai|@}7p;Kcm;K1d%(1wkZXN0;v@~6ThaTEP{8XlNm zIe7vcq#WN7*^w_*ISwwx`8~c-+bQqfBe=^wCN&`?(t6>J}#-PG@;8i7~Za zGw$qVEAR7`*Ajo~Gpeq3B$Fnt)_lzz4mY!;&|Ef-2$dBsof(>Wn?l`-);`T`l2+Z8 z^z0_54_?zIZ(z9|CmI~9(QtWw{|?pHxiK8^T)7LI`%$ZK{M+_idI6RxJET_7V(i$! za9m;(8!0`!vf@odyMe3igl($*5z)uYYX)fQ7c4VO`LkS)4Fw|FY)G9+51gEirK!ad zNgk`8+Qy?t7;#S`?I}lC$kd~4N5(MB-h<@{Mi95eOHNA)T@$+xj3 zS1OK=%p0_=6@TJUEx_k#N*7%cV@hQuy4sky^MB@^SC(8oZX`ZH%_SD_eq0 z@t0@N)d6$MNF?(0t_+&Hq@|_hCD7WDy&${x0E3v4++0OyX)yx9lI($fF575?ov`(9(NMSN)o)<<{m0=FJ?QO zL9E5>Sj1AUqSIiUk5Vyj*q!AJs;n4sYt-xjNa_Is6STw z>)MkKn08l>g+Y;}4>hoYpoI^}aln?BL3_hn{;sl9L4&+l3X$;|h*6-`fvM8q__*BS z)~RAV-UzaS?)B^#^ItDRV3~oyQoKp_dh69zJ;xFfKP&w0jg1s)_vht$Awn&CA$ePc zf<&u?z02ELHZ0M0aJep_b@-C81vE5A5n{!&6OQib{KiVQ*|138_M6pXK~(J%?QtYv z-}n8Ke#P2_s|!QGBp&_HDlV}QDc^oE(dp@XX_TH2MI~e*hNXR?3KRickC74)^2`3L zh#BT~SIfSY13_aSK(q~*S*nt6;67NN4g!@p)Q8zroQKw4zH1$4C|#1hMa9Kxy$bZ5 zAG-Y|u)@4?Izg~Osh3p}QNC|sW(;wNqnCZ5dxh*%McZ__9uF_}r=K@LWOc>KW%rQ` zFP>6AD?FHzELv+?c#?jlWe0ip;dhv5-n5+{)BqZV#IFB@7)@}v99dk!VtFW}tr9ho zWZ&f^5JdAf++F>x#cKQRjETy3F8YdFe(-%&WWNa=G4U;}@c!M@g7dHHn*^mVlN1Ct zh!^IcvGUWOiP3liGBhe6Ow}il9YcPjTKhCHF0dG~Y2NvoK9+ z;3cft3yytx`!gQAH^PS}^|)a@-kg6GhvMQX%? z)-903HmUN&KQHfp7+b-HSNBNm z=4KfRY&RZz6Z?CB9rX*o_mG!O(P8Jzh=s-uhNeBeX;kU?>k}_%!aBEvicgqm-K8(d z%`#UQYOr&o``(1IgD^aT{2$uM>Ctc<;1Fj{3Pm(F!#AtRAn^s4C~TdMNFvD3FJu_B zk~2pv@e*!p2#mROhTgq zN2&oz3ZAJmPVVeXZ)3Yh`Td?jwb)RLb&BFgLVtgM4hW0DdTOLTk(D7V`>Re}_S2DY zw)EtV3uVSB+L8x}g{F7-?CJB72+QbFY%ZyoDec%7M8-iCqK;8o^!H}3t_grAc~ShA zhL<#gKzI0HcZ=dnC8hkalUD@&Q;OmFkrnfwdoE~@ej<{32pu-&?Z*ILUHE~oP~NlF zZCVwj$6|bA>ZHBow;`04apYB`-<9SnpmW5cJ z!$sjj&EcZd=n_L*QMf}eg_e2=@PjT07ahj+L23nuY!>57PPw;qGAisE1d|&=2jIo8 ze=;uCE*(lu=86;mdP#;ail#0lD5NCK$O4EouM01B6O#7cvC7)WKlBrG5Nq;ZK|LYX z{`^;GYl5eZ3{ImxX&NV-DK27~xt*5PY7L}je8-&X8M!nKQ8f2Red&Ix|0AJHhVC0~ zMLMJGzrZ}f)mj&d$LbnKox4i(x#nnv&*q+%?OPe*rKR BR^R{t literal 63736 zcmeFZWl)^W`{z4YaJS$t!5xCjUhAsXDuF_EhcE6iiV=&)q%Umwdk0bw{bG$YY|BqCp@KOhpB#1_Xi#ULrtHo`7F1 zErgih7o4kxyfma@lzayQp@t|zrL?><_ZDsK4Y$&mt{BC6w0;^WWAivFOU^GYHA{-HxC;n0sa`5l5tBWMJQF`;bo21| zLrwe7BVSvYPZ;js*R=Y+Y!DpWe;%n2B1q)Fj~5Vh2=w0vLm(35zyBXzCp_fex2mI> zzy<#M)?&meh~&R-)q>Z9{P)jbf%`vdST2$*$r3eDj?V&LWm>AAqz}Q3n1(oVlVwd| zNDCuye+YaU-~H2*?CqHHr(2qWiF`Z_9i1l$0|=GV=s9D^;Ah5&m7aJM6h252;@?39 zo?Rw5tIji3zK@GQ`PopnN>(*bR<#EKQ^h7R?{VB`D3Ov-9NHEn^a>OnIV2C|kHO=! zv(0V(q&g&hy5ZaFt%-)ZF`>y)8rr#kgte3ntQu*kA&F4jWa>^Uo*tGoll@lAt=0Ez zh~xP_m#Yz`wX=yTMMc7k;1UKcepY3E)!EhJ?%q1-vf!afQdoJfD$dQu1iq>KX01PH z+0*$p6Ul1tQHuxZ-IT*BN(0-6-%$obq>`y4@#r%!lkNNXVbROcDn#%^B4 zeIFDU`!23FVQ)$-?AeAg#6&P{HATredpCT2U6qDWQ?5w1Y&f0YZhUewOtVNOuc&BX z+l{jL%NL~iMyG+*o(OJX;Wuu=U^8f~*|&rjoj&z=rcO;1hL=E+rE!l4$CyFkEObo8 z$h3q{u7F}#-u_e%qK8;I6m)cwKwDEt9;9V98+W?(G7wTZi8j5@-4t*`^I5NZJH;k- zdwW~b-JL(4{CTjF)ds;J8xeX-ON;Z(xr1Sw7i`-Nd<(_U)E$=guVJuHvD6f3Y#mAW zzNqkQl$_U=#P_e<=x7z>tn2;b-aW^EJOCduUrirx z>EpOpQ}e9m!gdJa(v><{xAm-vTvV#0@evC&^|gg6^S^iJ_zxMtPiEku(&@(yi3jhQF!pZ{SbfXXvQk6iyD)8ofOhsYB6T+%>wR=+>k zC%K_je>2d%U3y{>8$sp&v`8gOU)}D0>%B^m%k`=4-eT+YzgGwqE$K^)l8aR_hgs(1 z?oFHF=v*&78A1W0C6|;yOMixZE+x(S@lA^`%ZXC@rfZpK@UpIbYLAAC+7m8aCGUGVvXZhn>23i-Y6Tyx++D?c`OR$W&FaJ`lh0ks#0_h zWP*;pT_MQFXO#ipimzt&J;+79aNOP9(c5)|v%;r$*`;-$%?79!Pmj{N!{={qt zn8~YGmi@5G^gENKZ)3Yo<`&p}#vFC4y3u0K-m~kT<@K!szi4kGCUJI64Ih;QfteOu z5wzqlP08l#w7(wM(#W}rcx{UzeX90J^eGrA`lFECTd!}%i10yeITthL39G+KG-vAV zi0uXDX)PL@{X24yAo_1vSC^=Heq8puGw(KsslBAosvQLTJi1U$Hgchs7QKTR@jlmyb(9e@eW@_gdp2{SKuYPin|7M`}T#hy;nO}I&XZ<5O_97IDn zg#F=&j9!c*RcKs;7lU zI+l^~ry&}?d7@kH7z*Y6QMc!w931*!+=@h)Mo$?ZyAs(->H-Trhe87Io`%x@CgPnR z^BZY0bzN5-aLnaTU94RR{RV&NwOh@}6I|5YNcE{Td$2Ps)!pLsZ9fS_Hot|!+bMc$ zhb*}G4N7^rRB;IrJmfGgLvuep=&hY@n_hvz5nI-p_05HDb#f$fXFzxVe&g~{`JEO<5>3V9t-H#jZF z3odyfNZjqH9)COZ!^XtKd|t15F=tn~I`sPfZ|ndTxlrJ=u@8HZ=$*fWulQ@@!#Eon zogd$%ED!_i5PmyjG*siX>E5g^|Kgi0)MJ0#kth{qU8$U6QK}v1-i9}8>k5|(V9e>e zZu6%4M)Q7inO1>;T9-3h=!R0=$)UfMP_IQ zgB#m0Q8L)nptw20KaQiySioc(7;AEFTFN~SbByggu9W0yr^iBt+w{V3zLu-8K?tH8 zQ&0Ryf2TZ{xUx&z+2x|ci%xuiQ(BtJ&tIFO!(LsO7EchFuceF4j*^z*;I0izf0LI^ z--H}qi)}-i**K7R+LBm&^gFYI!{BW^13Uy+SPPzxXLd$LMndmSnIS8e$Llus_E0}R zF^FW=jGODj{oUm%c0lBz@0Q3@Dyo69%Jy{48@I#u8xBgpQ}s_HnHfp1k6ymZsYJa< z(fJMw$3kF0&s+%{358^Cxr^-nE|fJv`+I==Eqa5!b$~f-BxV#2)M&taesS#Xy~G8H zdT(u>!KG8<*lLoqN7d09)DTS7K_T2kN89jY?L|&0!d(r1Y8rhhZ}XwK$;OqrY!AF- zH8acRr?a=O3%&404GI+A87X)#s+AK#cUerSu%)m`ELla@17=k+^51+{MVzl4^#FaQ2JEBY6xQPn%CiVKR@lKA8az;iJ@l+C6 z5R{0XCg;`e*d!I|c_|VyG8sP7zImsPxa;e8UZUBV^KdH(0k?DnvRxHMtq@3tfI~3b zkdXIZ3zcU5avgfKnZ$@<9M+vBYW+9IESz}8)4wERo+kz0Y@+lFR%GDny4(x1B?&2& z@Rf@1%l+Jvn{ym#rhtfwHPXBx4IY`rm!?U*u!Or-mJZ1lkaRxQ%j@=vv4R4|0Qe-vwj2?wQf_sq=3hPmi+fYJwp z@ja@<{c(b|C}o`7am?#mvp>5gTwY_#St?Ao{sAick{;00qt%|7jsOX;&hdUX=d0VW z0=1L{fh=GQc`M}WKI#1YCRO(ftP=t~D)DQ7|NeCip0GJp4kbT_sO79At7yxI3VrrO zM)76QVv6taksn?k^yvBU`YwhXHS%|Y&1#l?BaOR32ahYDj##%)*!Q~b9XMlhBRXxy z)6Wa`gBN3%Xgxn7sZvq2FRQw6a8EcyAv<>+^tqRjJ)^nVTPS)!z>$RtIU4cZst`pz zec8#jdB1;Z-0=|qu(ZotbnvnS!}sGm8WuDbroxmjM)7Uth3M1T($#~`XUjpmQz&M3 zz6z~}R1z7l2wp*Q+cs)dmdvV6fK9*b!uAjR_}bt5&zNq+02)4MSrY3%RdU}=X)@Yl67VBv!LcVW#oll6(vl2$spbx@)cL$fhxQ9S6 z&@CfzCn!0M`=&H4dPHe{Sjc=VJ~%yjCv%=D_4S@q{*M^1FUVbm`dWs6*spJB(>c&^ z*Xk@^Ve>4z;xc8;;&-&Y5kCC1lm6axMjL6d2K}23@gL1-3WXl1HMuL`TpnI z%RB$CMy&!xGh#mHlIjG8P0ptM>!qb@y;1nvfBvMu@%cN*#4RKgsl^humF|B|qP!t`@W57-#sHUTZc}^M>A)HmruMas1&o z$D`foss7?!t5x#^k@pQ7PaSzY{OL=gg=C5<8^R`^eq;MW*pdwK4?Vu zzWah*<8_$iJCL)Tl;cQ)t`s%UTS~h4mb))Wo1n9%ast(B@z>X3~Qw#MtwHcePGO9tOIu- zQa$`uV0jV_`lmF}!%F^KY}zURqS>$Ma%+rc!^3R9^@01Jk+hB5f>H+hU;+AgTZpXm z&l@qnbE??iU#KleOkN?^Wc|&;-@Par!>O`E6DMv%jYtl9rClu|9Bl-HkxUOWST(Rm zLA2Bn5#ciMul$UYEl7&O7A_L=uc}it=r{A!XTs%7OPuNM0$)LTL}q^qLlJ4U!prMeCh~1y*mteXm{}Q^YhwB)h(2Jc5{7ww0P+6xpdh)w|*>S?0>aE zl8~mv2=;5{bJxx6%Ntt<2U$K+S$e#|tLM-#eZ`9>Fb%t#M!E}!+5{xnmBhXK8^mP+ z($4VL?Vih*H}x+|hQ)3KZSxUb`GRWN7tWh#^dqIZV*Llh^<$9q-`$s-Cdfq`+qfOP zGRTRFU*U!A#eN!Gia~=DSzn(aq3R$LvU^>9WkwHoxl~?z(KZEwiL*g2a{U9J?~z0# z2+4#p(g!aoZTvyBk+gnUbkugrCx7iPlB5n%eR}cmDrS`pLB2BD%<}45WDENxUKX*W4+xJ>={!1oyX#lq&oD%QO&_x6nh3!{K3qduBgFw(#X#~%AjI(+^1 zmpDF_O!v+CNCL`TCtVpf--rE_t_;~IvEwr`pWoR$C9z``ry?&$Wf5sK(iI8pJpZxkM_ezG|X?LHTdP+DBWcHi0mp2I4%#8f}4Zx&Xvc+{QN z^<7yC1$%<>Ggn3VOeYsW&_{@1p8Y^-H9tV2B6-kT&I_fe6N-?>VuR~{lQ6@(3| zy!<-fY%`<7vl&z6V+r0T==G02&?c6al|B5}rq>~(Dd_Y+XHnCHYtAQ+u8=ayv+K4{ zly07Uvb93t^>9TIS+Y@Um7&uPgQ-Ic)P2uub7WakrKz1C=qx_OOik&4OnMc-7O8-M z4%iMrXX>ag(c#5$_ln;K@(Yl(NowXmSeUqr8{h6Pzv_fW*kFC+E4I+srs}Kx{VeX<;bY3{_@&7~ndl#Y1OaOuX zwa>*tSkI~?$WWIL<*9K3!A~CB1wfL@2*q=-jVp;aHa562Mk3`3gk07_O`ktPx)H{0 zVF8*r`TD1%8r(K%e06T5ErnL-@Iww<8aUJnc!=u3Hr0}R23*V{&RTWrJQmyJSFicl zAZ)mRPHEZE{RE+XGx<2V!1jj?_sp=wQOQ^a>hOZ9)8+65F^Fd3KsxNFOY7p1m*~;E zZ%0?Y;8`_mAHMNkfqv!UrszIYnkKZT%r1@sTuV7eYD+M{4(0DiEyq`apLnNXiWO2* z!{bUtZWFOJ(SLtR+$3?Q@n4vtvnkT!Bpz4yzx?(82c+@;fUA8EL;dPe^5F^n{FF5N zg=FokyjhFRw&9L_5+pNPRPLl;KFZKDeX8GNf^nnKI@}+Jkp9J-|ATb8>1*Oe0XhM> z^_Kuo@Pale5@!4Obtun%E*j5cs+Q9=jd+60_bE>058O}48V+tqB(7AqcULrPu)Ujp zSvo+SC1hE>Zwg+qNA52LUrq_oGr&F5mX*`Y+Y#3Cv-E9ckP2i*;fletPz=_FnMf>S z4g_RId{QFIqAbTVXmpe{Fd+N6b1Fu$XTf9Z_D&PfPBA33_k*Da2acH%0ZZGb{~*6v zH_U`x?meA#t}pM$HJ)w1c+yfRrK?>qF%(6uhy%q99>h@pkW{VbqEWM6wIV6K5_)E4 z4woD0rU=b>fn`ZWQJg-m%I?H}gSct)^o6Ju7|^mt zB+;eixczrGQ!r*J_0z1MrCsonNj5~h(ww3}&JIY@I|OxvJU??d)p1s;^;QpBF)!u^ zs0(#z=sB{xznA7-JuAVM_Rlvf7dooTfmkqIa?_a zIN0%5#HEh!(Tv8%$FB{i@yZoxxB;3QF}>U8bNJ2LjRnx$x)<8pXzlr7D{)WqpfAlO zXo2|-EWmi6|6r=6x9L+-4$*LTKYLA*)%&7w)&jBP^i{0LZ*9Si0P$zqVQ=as?HvQp z-cTXRatkx)Z$5sOo2O^xociCqJQ|eXKnf8L5c2|(48BmC)aqT*_Clmp)HoR2?w|VvT?%FChIYT=W zMb)M~PlU*^3N&c|ch_FS6^p;tB6z`P@5U0Yo^Q(cIo}J)`3+uyyBeZKJz^#6c0q)w zIkZ*GQ-G+U*z4ggS!)od680evY%=oaZ+o}-KKx3elLvU+(v9?S-O+@=_AXQZ93oYq z$!*9;Ao-CfMDukP85IW-5d@9kPKhZ$7z;BqIDbbtpB86v8UWGPA}9 zUqpDgg%)>o3JMB?FM|HcO{|%}&NZs6wlx}ZaH=UbWR9=qxk;8~b7*hs7cU&?7doE$j$0hCh+7iC6 zkN3vR(*C;WPbWa4m-GDlF&CuA%nf#mdarPv0Tzt(o$nVlyM=r^ap~7BBH?Ax&{09` zyxX-Oi_Z-w+&}m2U4)~2ueeh!no!er@0y-#a-qYb6pgG5xZ9QezQ@tJ7$1U+onKK= zQ9O+VkyX!SM$1&OhE*!_*)lAVL0>ZH8wAx>wnyGGc@Uhnl-l=$kQv&&%ksxPYV&6- zMz0cSOT*FVfu$XZapi6=xI`gKPEKi${&9XxGsZZpuZdkVmf=W&@Smq9Xg(doiOy}~x-b3S!_#nd*RO&aiaD2VW~%~R$HV&OmqF`ce30*+6%c~j%)<_>s4 zxgx2unHS##BR_Qi7kJA%hE1S6l$HPU9@f$@u zmJ}8b59T4D9UWe9UJ84(QiymS^pZKX1(lYv?9J99M_^NNNQcLa9bWVRJYr(fxvgbG zs6Pnu0y9lZ-eBc=o0~J-&qJ9gbyEdvZ*zce*eC~F`U|oDnjRi)OS$7O3q0o%62tly zT)YwHiJF3KMXBz9%EjPlB|L0-IpTNP5qcdX$L=F+Uj`ZOpuSeiZ&m zX~@bqmy?5Ch1mzO4>sf=aSvkn5LjHw+#wuT>N@QjpT=I*4hLDGY~nrpv^%BHP+p(6 za#64&%!e$W%Uq_16!@rd6ciL}A07_KQ~B|kd-?(M5B8kd&H299dYs_VM9w|I^3Br4 z`1p7t;E$Ex&Pm&EH#o<<_Bw+Qy!Pv-(MH8^P@JDY*wa&eLBcNZzXEVQH^VFc3&0(8 zmJTrv-AK{hqh!v1WRL>%GJ(`9Yjv+6g;8gx|BnE-R;u-X0$ejVURi!j6=&=~=_-gC zWW?TDxAK2v#WbMx?_le?%1sj@Kp@Y@s zS9He4P;H~Z9Gy3RJ&(5w61wf%Taz~0{ceu#Zw`qwMLt5t&HmkH zCrbAZ?a7j9K4}w9Z|vO_{gLe0gIY31{ZYyXTcnJ|5ctqgq(EsD*I}o@_s_CJ zPo|iYjfpjk1+~hMU@b3Z24oTuR!OQ$XG5#ct!x0oZK#8Xu&sJ6alhxQMO`h_|L%wG zuKAx@fYqnJO%TtMAfIDva$y1aed7xYu`MmazP)t7-S#QJQ(bsPR^L&gcorG79<5V3po^{lu#kd6kkp{F6>0r2&dM4s}0zf|C5OgvN=U4`JWG?_XCf|aZ|FUA z{Q4hIYZjF`7qk~?bG0EJTQAr%Ert?cfZ(fpLqlXb;6V$ClnhlS2twME@PPdZ;y`)I zZ*ct1Xe+h>-Gehba>0m5)X(kGU!t$MSE-SKvJ|3^%lgRTfxNDq?xHB2R-QIBn=)*9RYD1>Td>yyb!f5P-a zQ((e0t0&~yhJO5jScphBH>h5(gkX>V`W0GO$hf!A?Ak?EN_aw#n6Fp{R7ZWbQbp<9 zFIdVQBI54DZ?`fcj>c6VFvs0P(+?Q&W0J6p`Vq^v>i9&(4(q*SfY26K#;iNE=|v$ zCq1ibu|t(zeTpi{pW%EwmL0~Zs+0!fv%gHZ*7PVdSJwMGd+w$H(H3=9nFrx@Lija$FOpAn!vYPFaBg6%=s z*_0UA*uu{cse)561=Rhxe^uQebKyHb*oRpW-PM3uNT6gk^aj zeq?K65HW#i-A?DlRH?+ymI)tuPG+nM4mMdf6bNS-3EThVyPcX3Yz%F^i!84#+}*yaMM?@8lZeoMx(x14A*A4MRt4}y4;a>?6~!~8O`@c z@VPy$QJ8hm9mVIOVwJ<+By-Kdf?-ijzQ7H9bqX!E#W~&M91g2_!T9}T*gp3sPcve! z8c^;oFV_=_1Xwc;W~$9?oSbsfO`X?zQGIXbm-`d^Pw9XvyvihTH5hw|4AjpEiCZ{+ zetv*xvC&5T@T`H+*TZ~_El8H@u$H1MKh$1TU{P!6hSl+k)EqYZ<9{35@9C2Wz8s=wFj`({`m=V53WX)Mu(1nYO*-1yl+I`8WMB;wRVWwV(gkN}| zk>*kJin34&#&Bu$B20ZRI)1dt>QSvzM9ht*rAC>_L>VQ^Kv!&7OQx0(N<8SQQG^=~ zkx6vVTM>I6?rGn96d&i>5NAIhnB*{Pbjy9bsxr(BeUw>iGa-BTsZ9R?)I=&w(;=4n4O-E zIP|}0J?S5tq)Zq%{yPN1iD3&K5SOikWbC4MtH**zilFa#ktRNS?~4w>NFvSo4vJ={ z3_rHW(TC$oO}fhl7)0Rq@3))&=qC7r>gW9sC%DgU6t?yk?9NB_%jjyyEd$$H%QfwL0Qs#B`{g7miuqw(1#+ZYx#8 zSI3E3B4QyUW?h)W-;SwA5>7ze3shV9p(`G}Bfuir^p0 zPTLiB(-nDu3vP{O@d~FR;~~Nk5)xki&}|QHTzXfQo8RXKQj;c+ef^{wx|ZEO;@7?C zoNZiA!-5@GBP6e>M7_8w&v%TyH&T5L;s!5Y-~G|O9C7l0uX+tFi^ihfuUX%u!_NCN zJo((35{DhCf#afIXPPmB#ozw-!$%w8TvT|hRy*o#;d5D{_E4p_LeBbiQtaJ>_Fp2w zG@gs!6I6__N1~&h5}qe~13q1U>0YSSKG%+HZE^#>C7T(=Ihs)@VcB56;HSs^?G?#x z^v7BRWUQ5vqU>&1fjqHqd-K?q3{V@E{BQPYE#=*&^JF5Nx5x9m&8;d|bHvgga>3QV z+xY^n{%S4i#o+kC$kSaLsjEqUEhYPIB`y0yR4jYf7Hax6){12qtH|*fA$yfAS~m6) zRL1JS{D&)J^f-met&}qnQx_gRz_1lxbMh_e|MqeqQoae1cr_=o{L#SS=>C`|Q(l!U z3yobyr3hbD{EFWHZud1=){o??HR6s)&n0i<<4gE}!AF1t=VctTvT6a@k+gMcayU+1 zFW&1Dp+$#;tuY3ouUu}kk>7JIZ2mL~SQ9Wf2dsS7z&`Sz*2s(8k@6qk9k8=^h zjPfS3glTGZ#xQeC(dzS4%HC771@xc~!(gb@vv;tcKLJFKDXp(3w6wHrdb<$~D*)jA)Uq~h*1PDxA4b!DuI83X?c> zEMVmOm_of4Zqo1ZDiAgBg9=&J&t$IV1%=ihM-sBw-N6=a!mN~_q=~xkeO1A2SA(5Nt$_r{#__i8M%SQRtJ0y{ZlpNq2yhJHQ|9+=?N=Yfllg20f1?l9<*Xw-N z+69!XWr}+L{1Z;KfM44$3Loq)i`5 z+{2=`$7*90a(PiDy;b*+ZwhCE3z*d!KxMFI+-ODV7n(^r+RW+U!)TuCOj zyV(>IWl;-b;pdBVO(k5ickfDUgoTBx03KnEhVNL$?pRKcq=s}XcYL)%)+^V!^c4pM zP{475^irBY*09wBlbF+(Pgo4#1Qzw0id7e}_;2sviL`@0s7Spm$}2;wQ?i;J!}^El zA;K)eO$21>zAGp)X5!cjvCSmmHCY-}S3|14Yp|bz)GkE-Ajs-{-t5=FSqnG)lObjt z{AZC-^q-HZzfND%EI;KFX4UV@RAKTJU)Exp2Wc>{&{2o+lpE{Eac-R5#byDIDK~<*?2w{})~V zuT}~_qHCfzY50Q;?h2Jc6!@z9jz-o@ z&RUK&mTjoGvNB>|UCP`0xxE0{R~^=2t6Ese2K)O#>NF+VBn1;+Uvf~e8xj(tP&6S| zBnM7=S*EUTwXCYyx9o6yQu}e!knq%ts6WOe5Y$KoNlAjox?OR?uPCTxxv%RnP_nYJ zT40J_wbGU4-fHqDlVv0V73_s}k_KUM3zoy$*c%!&c&Jn$JqjoW_?nM6KmPPLt5}us zZp0@Ak}O(wb7f^^8#}v@p^e9r$<4(TsKgior46#+L6udHRpE95ClqKo0vVWKBgVzW z+1S`f3X%6umg&N#r>)(hA6a1Zj5}u5J3Q*MbIH7P;}McFdq(ZP;O%*vAMaqTv6RN3k%C*jtbZi(2JimIxg}E zGyKE-5RC@pJ|EW+$y$nHFc5(%W4WUG--wFAgR8y8i*cS%rV6wg*t2p4HpuU1i)wK; z(<;!RA)FUXFKgB%G8A#tt&&#B&wGwnsZ5*2%-mkoVSu7i;u^Nc&<9j7$raW9UT_qA ztf2#I1;X>ESy;e>l}nDiBOS9<*DA{Y9xB5ydz_=3sKnJe1ca<(A6Sro7Z`~(TFc1j zPFIepTI2KXH1+AN`BTsDkro;z(-JR3;zLWR*Xv|#Y(u?&VLu}P=bR^!ZOCgijQD7$ zC}$0zeuXbDT)h>5>i7CJm6mqjgsKE6OLdeqkkveSgw!tlJGQsh{Gl~RLMaM}E1l*a zDx{Pd)e5buV6-L*Ty&jxaButJCF9LnMR2b7thowV6{`OV6vYyK2_@9 zcKg83o)yj`9z9lyTeriO@;ewQ5LvCwF*N%ySfcOjzFEVa;@%A}Z;LWy&7CX@i#=&8 zCxEi!Zr>?R#r&1eZh7MoQ@~#)fJDLALt0@KD;>o&%y1IZH(Lt2+RRcC_qC+bVeNla zKIp$;gNRCA&W=$t+bGzz!JPmn6N-qLG0j=?Ix&(_AC_Q)eJN3)M=7LX-@nXX^uc%f(Kl4c4?6~RD?boHVSLaw74Qc^ zaD9ltXf(NQVRf6{*Zh!YCg}eD9R(z=K-73N2N-+5@ST~=#tAD-U!xeQtEEMn6pdPz zT=YDSIB$S!V5#{a_;7o%?R$drCP@kZnIJZ0V7*i|=jV z2xxDF{Hc?Peycq3hGvMzkb}6tzn^HIzx}M-$rPjsUGCpa9xkTOL^S{r~82O*#fOpI~#ZUxML~!S(@CK>&?mzCG^!Y4mH}5 zlU|I0j|fD4nANex{m>U)_0S;}{H=@0LrHAua!K*B1$lLOJTi#MgJ@r@h@bGq#-E3Q z!W0mR0*k^ncLr)kfNJ7@f0DD#dB4Uv{_|%ruxi7R-X|l1$A=I1hkCVEm>!2qn2O2H z_qX1+>k{{L`7oPN?uomN*Y^y`gY@^CPWM**>&w?ujex}+U+-2D?~7q!VB~^c3>#3$ zuZDKnd12Mvcp)h_RiNPy;IP?JS>0Lg9_QU>z0y(JDrl;C2$WQAQp+TUg3?q@63$9+n- z{{G{umBp^HfHS_eww{OxGygUmwxz8X?C<5+n{v7hAGZdO6|@c7vgnxPZ|`==aP*cT z>JzKY{)Y;s0x*|KiFZWp2T}?oNE$35KR`*m_rbd*mx(wBNBBVdYRRmoD}Ky_pw*~_ zXdkzn(w%YghJ54qvD(JQ?KYazvg*C-2@>(|nN-(+yaIG0ueB(qgD6b`q@0_Dt?}jM z1gC(T`ODpod%L>&`c>73Q`M8`v`3gS1Jq1Ij_F_KL@`JP4fb8f>jPW9DtSC<7{1~} z{mh!KJ2`d1qA#NYz&l0c7kC{sh&3-Y(2F zGE{!r0RR)Xq*A*7P1-x9_w-QG>CX9YUVU%%DKcB07#X#74V=X9S;w)vNHoyHk3(^Z z9kPAa=*3#EuI97fWqMvF;xW+6qB3Qs3ax$}7IAFZuii_Bl}+&!<1eylBUczKLITTO z0$i5%5RJ4~e>JDw80tYjg@AC*=rh&Rn=F^_dCd8f8wwwv9D3K%U)n$Rj&n zNr;7^2i%i`-U~?J-=S|;1Iqa2mC~idsG2O8(`x78ZVMz4&r;>)Y-Q>k4>B6nN-LyX zMPlA5^L!Ywk}*pvEOYnp06kHURk`DQm{fkJxQ`pUbFLV1 zi>02?ED_Ucy}!|EZh%z*rVi>hmBbn>hlmuCLqWJfaOTH|hdN`=7OQ^nVq=M#1?uI% z&!ZyZt9uQYLfiB;u1!STP?BWCR8rhRTRWAv_A4$Xao z(y(N7@YL22K^X^VRCX>)T;-%3Y{qaVcRoePOQ zCkWx%rHVFOhd_e4>IEw7*N8P=Jy1YE5j-x==BL(L2oQPL&EZV=tM$tj7>TVTCIL`4 z_wstGTWO300o7;(HEia~?S2=%=cmI9E4I$gI5lh_tJ@^xeFnPHPIo4FjqLz_2Ic7R zv`Ni}FzITD!rEssa$<3*n z7;@e#r(ROH@{3?ECKdv@Wh6lh4PFbhpEmR16WR8%UDFD5G&t`tzzZ_-6k|k##0Zv| zF@RZe^xdOowtX$_cBK=U>^S~T^4LiP8RjGqh()HSya!Li9w!A{V2Tnk zf#6_=DLbF~FeQ4it@DLt0y5kAX+XZOmX1z-K>@-*JVnMkd$3$UCC+dyJ=uGO@?JJ- zhb|uo0-mSa>UDK>xivL-$@Hf44Gxz;5kvElfy#FKglykyaEQ=i+O4$CNlczqg_}8J z#F_h^d>ev%9v-gmG84Y3f5W{+$eVTe2eJk#www3Hk>FPA`Hzg(PXm5*t+|QiN_K`t zmE1dBkpe}6>Cs^qGl*O|uZm~DeJJt#=q1efz=5I=sUhX^UU=PKAw8URipNIS+5PQx zz}KdU2V4IIL}x5BHaHjyp&wCT>jRcj$xUV2xiML1R#wJ=_X7F18@Lg?v3t-6qsNZa zr>x6cp&_StF<~};oO=JeTI&cu- zkg>>tc#3>r>*V0jced+!(U7>2mSL@5K2>u2H!AG_1mnP3&a`@RzVq>+iKZRR7BiS3 zOCK=fD9D{GN;$yH_l;{5Lhw+OGMI3tY@J$RSbfz=h)ITf#4VGzl z6J;1C6ue9JNZ5&yQqC5i?P01bMoEUgBnYB)l3sFfr+c>8(ds$6DXaT?DF;^N*7%)} z+wulCxT2?mg*Te8xnH?vmqmafxM}5RHMW4W_HYXw#M0@Ax$Y}%gpr{LYDv|8Qophlgi!Ce zA|z|6Ex4`kvp=ri96m7wa^KKLa!33MqUR1Auf2eQIywYoi3y^AQ2@3I?|8WB$bm5` z;`v|pP(7|Cukdqrc6Q!1QZlk6B}Q&>@oe2;x0Z^3q_1{A5npjC&|nzl_U<5!54{T> zvQhf$aqVpKBaboTj*RyQ=CJRD%9K05NZgS33kr@fLwcu%4L9*PIYT~;c9O?E?lefJ zj{{DZJHLX6{n6<{a8o2%E9?($7)m3(6z5wwlegCobV;Ur*x1Tq6_TCHQ*P8IAGmE? za%m_sj@urbb@CZV!nLQ5j(ZFJQ`3Hnwcc!z3NDUb3ULVedR2ZUk~|iC$e@jmtbuSb z`Ri^{_v7Kjv|&iTC|vn7w&c}S*h1paLQhjC;6pHDsM!aV?b;0RC#I0Np~%GFos$#M zM~lzk(9w(!9m9N<8pMdkD^U52Q4t5MpCt$|O$5foFl*FWJ@$j=_xnL%lc#D%X(?z@ z;-`pqbG?ww(KQ_jx)F$ibk)z)ag1$OSz> z34&@5v08!ZbANi4ZzvT`ffsY+WTN;ZG_;X8n?emfG;6`3c5gj&4hy}U>Z8Q) ztdKWZpDS5UV&yoaRaXzsGa8c?jAGuUkY1F}8TB#-qRuNB^_hsf??U^|OPgDiKSpqr z9zK5aNre2@O@SucZ{$po4{v)gWFgOsdxN!=IM zmgN9r)cVrWzhg;re;g9DRK}*{cG@#Fi*0raGxG5wQ9}z+QR!VWXW}UaJYt<(j~A@7 zhi)Q3qp;JuL3XpRMDiD}sdQ_9^V^kI9raUAdFs`Ys^vy58y>C1EzE+-Ts8lx1?bLD zG%XPJ#B;Q!4MkUxnAGtWFRXCRC0=AzaftH*|l${qm7bHzrA%>tWfnd4hWDq z-Zyi|J`W_ot2F?ZNh#VSw-`iX*I}N{68t2n$%#v}RZ$`>#)XFiE zf8g8VmLbTSV`H}KXfbwQEQZvh>-fT~5c2WC72F-W>?MqKWT8VmJ~JNmbY0ms&A4H{ zMrXTg_ABv!aJc+=+To7Cg$O66BPi^c4PV9C;9o{9+e)z&c9u3X?5PA9mcdf#6u=8y zbEhsK-n>d`FhLYCZmmz@tFcAM*WTFus~^qWEsPh~%ML+e$WoyLb$wsIe$D+*9g~j& zniL;RZUnvJ3V97kxP1vXk-NDV{2~PU zOrSut8#Ix+++MoW$_$c$0yt1Zii{2c)xEH~#dmmP^m2))4Wd4i0bq(HBxu5RkV>}|T<9|x-Q$#3z& zaBN$$WOC&y3IeTQ0ER)wf#S)*t_QqN5WV27ee6|Us2-FkNe@dlWrY{&wRGLNr?!pt z*d2Dzdf5KTI&s1f95O&iI6(tcM;Zkh;DZ~v)AZPNcvR3nGw@-co7#qw$~aZjDkAyh zaa0~W$-$hZh~+mSy?*qsk`Up(=#afw62-D~yXW;TIcmGw%(w(AZtwB*`Ton-*LW9q zkCz!7j)?Ri&l0qEB9kZtmxc*$9dYyG_)r5?9G{@JXV6jm#Fb}2I?aANs zas@k5KB8KKMA;NIE6>gek0<9thS#r^+>GSGQa;xGg2YQw`xTsb^u$iDrm9#NXne*@ zFHEC&#JU?*fz)&iku#?6O)Y+MUCx?H<(mafz7Bs#5xvymMops03xy|3w4py2GWAeMK>!Whkcgh31d02n`1pMnBI+6% z!QXr?Kxz2fF^NZ9{r!ndpWrFi3r!ab#_oTHK~xL}Z*qx2c%c1YqGZx_zF`7yf`su( zI^SDl?Ir`aniVj5*=BZ0Jj5n;ohCe6A(h4+|2+KQA0#R*UqHIxbH3LFXdnoQAMd!~ zp|D%g)7(Axw>iy8oG7hC*OeFr)vI&Q~+tj7OfuICKKmisi{MTfRGWsrW zzo%2I->P2k35Y;{xBwanXU{_fJi(1R z1e}&0wFATuDZ}QsNYj($G&N zcH=7Kp?qFJObIg8dlK<{UUjID84Yy)0D)OuUtd@(P$%WKY(|(j2n5LSCR~w0L2wp4 z3kC9EOYFWB!1zTSS1$L&GW>}IW5?e2hdd*Ac=$w|z))_fZhk2#PPWYb*K|t%xm^w+ z9Bl7D_sg-lhuD{g0dA!2g#wGydnj(GYwH_`Ju5Y#=HGtOR)E({>{M=iWNF zCh-5cw+;%|{~fmYe}56EGbki!6dcOrYW&gbG&tQ_Fi=P0RIZlO(yGLV+|4p5O&N9=8Y^_~uw7MdAq3 z1y5N)gcfK$k5cB#FT+e1;PDM3o+q z!`cLm0g^hHAWLuHMeSz#ltGrdzO4wGFcBfF+IzTKRRFxX2t62r=U`Ov(6OW7g*5U z9{sIYWd{-=z#$DV7eFFAiZ#FsTyJG%WjhB4vI+_j^Xo7p-j_;J;r85!Dn21NPg)F_ z?cWP3AxzTDryJGNp|i5snnsujd<>B4ueYM8fm>YC9Ava49PTEu1Lkr{^ub92E1~2} zD_tg4zP}R{xImf*@ULf3ycmNiD#0uOr*3O6Ch*dxYz|=%uKwydk&{u+FJ-MIo9@oa=9i(?HIk)e;fF(fsKsE_ z_K1KfM1Wjl!{N#ioO`HI;lUX*28c&$dSHGM@+~e8(Ta#Q%y^m2B{y*S;RZ@Uo`{uAlC`I7@{*T20N~RNLFiZzr~4s&viIucrW{c^2QGbv{U~N zk*RmwT~^Rx{zN4@&27Btrhdv0G=FFW?*#+y;wr|n84swx6u`3t z3^|WTZ0p3#OgOMv*7U%bGx7~y4?n3GS_*XVC{|uXNZU?ZxR9`=Hxe^Ih;SeLp5%qV zQ5e0b))dB&m8JHr>^o4m{d};}Mh5K9a>j>&LLpt$pc0#0T5|Z;!=r1rm8I#+gP>Hf z+Uz9cc>p9hajY=Lg*ATMFOUzP<6}rFfWXZj)6RrJirZY}V0l zn58}k(sq~~Y~Sth?Ci|5seB%I(kCY-OudM;snIXRX$+o3RpZsjP#YwTPE;wVNh_DC zO?HeE+%+3{H}N7|pB50^Uz8VIzWX4H@$Q1&LFFr3Bw7%XWw8J)JLFcFAZhM?h2+=6 zX>ZcQ3t!~Pv$K8J7fGq#cHVMX=1L%93@p&r1FzxFU0&XohUfMYf9EVnqCiWjI`i_P~K-E7ptFpfx9$|qu5X~zK%CSk!K>bEetNyAMW57RD%^c6lf8<09q zV(%ssTzF@RGw!0?+O!g*{Mh#gmTRq@niYM&xm#)>ErCN${dHHPb@%k~zf56*8PHCLFdy!vC%O_57 z`R%1V`hxH;@^?KgBx#4w1fS2eS+2%-Q6csOmF_q0oRop@kd*o&Z$&YKLVj!mx!s`dXH7!mk8y29`ima-2Ojz%f51ka7?FkGMbT|~K_Fi}kXs&aBtVW0x7(GM zcGhlCmI|F-1KLBx5ga{piFiZF!&Jn{1@`9NCJOGn5gdd`Wc5RF@;3L+Y6=1I279?< zu`+x0VWBx@Uf@g%mNb1?A>^*k^Za?WtqG_kVWA@5(q2mgF$*jlXmcRG;*IG3GmumQ zc#Yf3eej~aEz&!}&-<7zblnio{yJN}h6Qz6JMZxW|5s%r)ES-J(#-{m=oH(Z@-pwg zyk5i~u*Q01eI6xu$3T-e{HLp51>T80l$9U5J1+#!-;GF&S@D|cV~cvK(nk9a)CEz( z$e8Ducv5~sbJ$8h%Eu2MM@?c%ys#gK=X8F3qlE-%#XWC5Ea~q0flB$Mu`2JXyl`sH zw)8>PDR&J$2x&)Eq?XU*Ai{qhKFaFA^*z=MaZP6r#FDkVdAfqA2NRRTqs z4NhZ9-FHiPXx!UodE2Y&a2f(!0^bS&4%~`)6&2W20oUuLd$&#vWB{b=`y%%47ITTRxvQ!!Sf>|Wcpei}%zuo_v;n6{E9`Fhadu$;?pU zTY2i?ROA?nNs*5`$N(?{pM99Y#`32vgXu@X_+dBS#|cZcFZ(^o*gL{T0{saWO*L`; z;+bZW-du3%wli)|I^9tCI)9&rGODV~Oo8|x`hQpIko0n8m+KQV7*;nR@wh2r4)jx; zttZmDhdd8koPk{k*rE`*CY>K=Yh9r}z{>OLKA;IHNH=c|%*rjjBXIZdA`RVv->^G> z+f?{`xABE=F5Qz0u4u^qe00^sQkalDqxF&n=49ScXT*CAA4FFLv4 zN_Ly612q8`N;i7MhKS(N@X~kVU?My{Xb`_rdnmV&#f^WDatd7$jK5=KV0^OZ{C61K zF&Jr}OLW@*EmlY(nLYg;GsAMGYJ6aVw=n~vhl3A!g8N6musW!Z<+j4|gmWO-1v8Fz z*PU+b9C)O0mTTeSPPt0EqV)aw=gJ4+sZyh^tM61M2}$tzK31ysnqtZU zU99v_QAy?lBRo-sc6*Z4OGig`;Kd08{4P9%fq}v0bfZtd=2PeI97_iWj7eJp=eA3t z;^JaJn%6j?1i{XV#lW08pmi_acRTg;Dm2VQC)p1v2#1jS5fv>f&om zl42JRSI8-aq0J?0%LJw}J(kc%`I|yx#al4|#p^d91T}0U%Ni>bc~zTQm%1VF>W4Jg zSSe?H??jcXFO1{VoeX>y3N2#FzxtE&E;Kb{d7_dJ7QYm%F(_P8Avaqo0pgc(Hzi^5 zOG#`1xmuo`m`uo&RIf5Os@@3i3r=Cm6>9%``E7@22BH^4tR|WAzO)_=>`{ndjx`1t zUe0~Qc!cX*6oYhenLd%90DD%=f}ioj^}z~>f=wh39--Dp8Rv0h%PE`iwZC@P&A02j zRKVX;NM(o#^Y^^^GMK+afPuVze#6DfTWh&$lkHCgs#>4B!v-5MFus^v`oC0Ct?mIx zk#!04`@q=p-D8>DiLAgDqw?LdC(3mQ$u&7JT@Z+&1coRjSgs$VYF1Elv~=#ihD7ig z)iHkFdrt{h)Msr1l{aniunTudaOvM;Cx!i`Gs(PcOi{@_t9V-2(a`HmXp?M_44rWx zQmm5IJ?#8_VEbl(FP3k*dv!Wq(x2}hFu)+U!FxyoH?lH@HbL&8D&NX;E)jKeaN>Ye znw8`pL9%7^i3|=`@!ZMgOZJ)t4q-nZE;oC_laY+g_W|xTyF63nJ~&S)#61>8715H% zUr(O}LSV5?<89QBmP9c2qs9nn;-MG8{gJxN;{+She)OL8@vhm1b2&|u1A(2JvGTm}CVzhs@^`q3T6Q5SCS(HY&Leq$g%y;Kmf1$@o~n+?ewNKK0dc}<%D z+xr~g@GX=yrY{60X19^JBLO*)&mS%iode05%Pm0C)0Dr>m}Y8<${3|w{$%N5VJm=} zioSoB0#bK?ku~hm+USxGw`9i7kR^edas`mmV`As2Lk0Jwak zFQ$famKPJGXoAqZeUC*MY_Twq7x-0^Srp_OH3mEgOXuQ{V=3q!YIU!30U22+%oqa0 zYfny2s?FPt-@IY=eRs1SZ@md>AFew+V$VQ7s%16u?q5sWV7Y+cEa)Nuy~=L(g9yux zu-`HQ>cJBFc;|01ff=JGi$278#pbo&DF2>vrTE}w>I@e9M<*%f{@$a$rCh)sP{f&u zni~qh(RK+(Bq5B3e`$Psa2u@xuh8G@T3d?MD0HT`yCwlsGO*(*LQu%(eGuF?HW&%7#G+Lb@rH<(}FNIoUyHg^ts+ zpob%3xj*gx^#i_i)~S=h3L3-n5s_)PEjVd~jFt2rp~3nZ0rQhH<|CXW0r!mdyPEMb zLipm*kYE&pget?_K|FcDZCqG)Y+W=NyWCkvHe+?A-_tc2@GFITCVs?B$u6jeSlZjU z)BpjV1JEYOg_4?97tO<5y~a5X1=!-(5TLD_V#QbeEc_m3$+-pw!e9`$b-(wjBXc_N z``?U}x7!pBOO3e4Kqpdd(N6ISG9m4gjl=H1f`(K6-RKl-asA#-?~nha4lmwR7%5n4 z3H>Y|%X<&Qr9TB0^Mfstab2o)>Zn1^Nmd!&eQdmS}5*RAax5sTBvOZ$j zj?kjQ4-E~S0K*c#bNh|;%wXJmKrZLk)VP1h%a^Xpyptu614&b?%71~Wyj@`b4j8C8 zO8g6813BjJ2Gk)%#nCXnjbsv^-SHbjU=15sx^ z)b%fDT0I`<|3G#+W9VF_;UVk3+bnKl9U$Ityx#F31m^oiU4_5nn19ks4B0-@ofY|5 zK4+QTkK!rIY(G?Zr?|VK-WfTeM)^#}iujgs+^<$UR_?R36Oc-JT7QfZ(+FGlSf}W! zuES3 zR9Zo3R|%|gz>VLYJs^Z3@D-f9xJzjmv=o->2Olf1m0i2{dKPK%Au(pSozDa%?h(g2 z5k=9j64}xesyc7MzP+{=z~Z!8=LJ?i$2?Ofan7`PiSZ$fVMI>DY~M}O7N?P zEdbl1;PsZv)OEv{X1u{-6;1`hCZ%Gt_VB>%qsc;EU44O%3Rz1aOzG7;d0Zz(^z^*@ z#w_9C;Q`KaFvSmGXp;B#_S69#Fr3Eu>EC1y@F5B0J>^bANm{OgU4VL?0=4DE3E5-} z#?>RIQgKnyb>h6#Z(;7w!EXMj(&t{1NeMGTImR#~E6Td_Zf`LmFKd^Lp{=bArknu? zeR#Ouy3f!`+dJ1;WAC!&02tIvSPwp@IL9Al6`EWu2Uv=@)|nOsdu)#LToJvG?f*Ch{oaUwQ=c zxc*-<7*w7#jFA*RM*ikyZ6rVen* z2Qgh>CWCYk964OT$^wh5fQTrVOFX+lqyI|_FyyW)Gw?K4P~3(dSbcW@C*naGULZYg ziSFeYL>-M|Ns?D8sZJ0{#HyJTs}({qfP|t6KRjQC2uKm?x-#^^+p>ulZ4-yOJ6>ct zKdd9_#GkYD%A$kJr#GUAhBj2CukJ?UqR)bcw?bBrvnko`9s)oBc1@2#9WXw9{sl8W z0bCmf;QkxejwSFSQA!~r&6-#bijx*AVMCxs#&wM(CZabYaM-~qwT}3B_20-2BLSGo zANblh6c0K6H2jjS!tAQ!P(H4v(&zh9@}5Z)$q-$!kF7A3#RwKC6zCFfk@8)$|zh zeH!IwtO6o`SW^FbH&RUx9YAzNZ3I00x+2$KvttQ;4*T+=OPz_RB`A5AFnrKx2Ev{}=)(!G|8};Z;is5l7*U3`X}yW_ zcpG=5xa?OJA;XVpj{0V+xkym)zF>N9 zIM}nCnX&dFewzz&umD|Q9RXYJgnHlXT!#?J2@^aQNooCv^?sswVC}gcmn%1zvb481 zM6yT-!n*Y-y#Nh+Wc9Zv*9n+3qo#$Q3}pvE?!M*K(elpzzM*R!6p(1Ve0*iD+D)v) z80J7nJvurH!+O8|gQ}tOI!NW1#mt-GlnsH6?5iGu-ul`legsvv;61qL7jBOqlc<#Z zKKEzlK=Kjfq?6#VP+y!E_%;zT!CTvUFPs_o_-6SvZGm-y!xHjxap|Ic!dt*70-NwR zLWvGy6nP|kSDobrW((h6^A6xcGU4uhw4Ma` z&fY$VP2q7LOeR;l5_X1wPn9h2rTYn=^GQ!J@2d?CJ7-5+YMP0{n|F`8ShJW2Z(Pr8 zUcB!+^a5*y%oOjGIdC`p!%)C--R*si0rU+DVDqVhm*5wOx(*?DVYl4MZt9}`B*%l3 z!e_iPwjOXwdEbt5Rle)VR}!N3+6Nsi``yb5<@bd|B#{}s7|X3v_7P=>5-Y#{At*=` zzQ1uTP0iiM;d%2bq;K&l3{2HDWKHC~xfV8gC4m8Hrtg}acD7?H`KYb)wO%)q0=bMk zdpyFF%hnDf0*j(MgU6;a5DMETwJh}GU>0VH2A)f8!81VgG~@UGziz%NSC4i0R0-*>@a}8`HFJo+k z;DaH6d?`2SaPnf(UOT%1?3Ht-j#N7%Ydl9uRZZA6I6kVbfezm6a=NmmcPfbK;AsCCFN-5K57NnSzNB)u1MGaBz# z-#Mb@70|U>(E*$h2XbAGwG^$Ed9P*@)vxjJC z>1p}*Fb3rlBdUICuD1xw#4;fBKX2sI^ti=8bb_Gnz2DHw;d%H zdPtmhX7NKm?#B>WVjV0AFCXpi4SYa&sdz0`iNZj=l!Z#_Tr78(EfJEg%k5HxG9{$bYlr<1DAQy)Xy42wuuGOe2`$WWrtO8_y*u<ZP z?rRfSjXY%DZu>dLBy1`*A}b_bG$o$B&6#J5bXtH6_z=&m^_I40(pr>$Cu*j(aG3p# z>6{S>piu(jL~ac&w0&8O8Fj?CMCz}x&BgN|Yz!#6%;vAi)C~<|05iP)doURi6cvRA z0v%mv4j2IZ^zUvFhR$v8foRL8ZKV`+ivZ@e@Zw@v+XILxs5&YQ$^`vyFRC{g4A1}u ztQFQ|(mh&nvp|Fk)bH!=YHH0)Q3Rq0bi}Jwp1K{?PnIiXHxjhoqy#R!|GFAl+mq@k z0`Yn0B>BrT%#QJibw7)MWb!kgce?ex8R)S=-@;L9Mg*$$4(z!#G~|y*rLK_Kky>)i z>{+7CVi59^JatV#w}?Oo3?i9<;5lLlHNAf7vQ2YEZaxiPaE^Ijqh%jv3<3xtb6;Az z)qEev3ITXJK8_Vli6i6*g@o4Cz!e;1S&hy4ZCb-SNQhY{QEblE)~rq4P4n&Pd>fB- zL@!C;QUOcE%HtKsCvhIchF3j+yHxrD(S;q@@1@-z58avy8aUXdu^^cR>mZj5 z=0SitGhmY&GztLDe5PLqhxjR<{y`gaH$N7N+r0EY8k)I|D+{8}efW`PEynRotLT2e zEaR>6y{;?25dV!csM`pXEvKs5b!Q%lz1y-M?#I)!qLSTQ=s-87Yy01dA;r9H}owGP&v|g!(Td)U^LMcH*tJ>B6Cr zS9S&izhjVHL-+C($xEyyGZ}RkT?KjIlJsu>{5Xu;9_J8r_9X8&Uc&~sD zZt-{7`EM(HfhH;0c{ntYe=vrLO0HJ}3=K6?TxO0G*)YP!UBO+d1Qoc}Do?INp4y+CM*VyGc>frEEe0iMj z$OoRMS+Stbv9c2kl_Pyh`||gWq8J)F+zXo6cRnEB7;UuJa#~zY>8rY%Cyqb%VT1)e z>b~s3SgZcfTbYnpbh+SymHC=|ge0U;T}HO%aH#k%ti@5GccYL;8#y}oYQoTH1j60H zvK~+)skPg+GB1%T9JD(&1@QY@Cn4r=Q}znkFk?XC%PY^IDtURPifdfnG%6q1I(-k3 z9e#d>_GM(QWAi$+^IiYbUP9||RJ=hKwTS--GNr8)h)ZQqCU#s2pZxTYIt7yze4^PC zMzlDK|7|xQR8UZ``wMZ=Wyd1)H?Ii zmtdwL?*F8SA<&|GqJA4;$``gZ^INZOy-kFx)q9}Tk?x9jsdy>y9N}}$KCyFg-!(15 zt=yd=9;j5l3t_9V-(=5e!cDg~lPN+>gCWY$pLe~?9U#CTME58q{h_cdP0POj&G@7q zWKLp^i(M^UjQp;%p9LX<_okDN=XC>{t{}bGa>k;XjSdHO4WtRW-*QH<4dckUt~~oC zYyWH&P_LKT(1?1ZMRE(8+WU%Cweht@g-~0c!?}=$r*>(Y8A5eg9vUHdFLQpAO5jhj zi>aIHl_mGF9j|f!#+HpZmGpT0XaKfOl~+gEw_$}+o$c3xfBOcUJzE_IF3kNwBZ>7j zM)%kDc7xErzY();?e_aoC)kOM`tIMOL;-bG)OU=7wDRsMiznu+MsYQB+<`*M|AF#P zMlDcY^)RzmHh9ZS=gwv}e&?T7dp|k1H|<#} zxV!TJ#DA7am<4&bO-)v#7iNaB?0}g*YT6}yFLtUIYnp9%z&2vvt=@eB=^ zwJV`Ma=XRljOg%2c^I>UP4nU`7*9Ej((4#~n$Bq8PW~IDe*!c$<$DGIsDw4h1ABj+ z{G!1Y1(kH`~n~! z0LeHk){h>jyJ-SV+lv=3TyD;+YGnRVcBX(GK>mXE&zWSk$UhgLZ$U77g%&{Po4CFL zeWnCb@+6*%L>e&`@Tiw#OWCeqDdPPUMyZWC)hlJ1#PBikC(}&f`P}yvg!I6gLx8mQ z2^>~(wRr&dA2sin>&#-q)RWz*c(O)>1P4{<32-~RwE*Gb1!C0&A7a z1jsZQ{UD?eDE4|lHV(|$_iu;`hmbyt=%7dg@!AqsUfBPii-pj4ZCvKgz6PJ`Pkzsd z5Ch>zra@KYpQiDJibd*Mfkd++Uso#U!bsYzXr!@P^jVZ`)0Vl>O-ED^Xa`OY#Kgp% z-;~pGic7?1`2v4b$HElHz+qih_Te3@{fF&5Vo&F5x+qRk4M9BaqAI3X+FMaRDh&;4 zp)AF@&(|?)-6UPep#UcWC=cOJcJvJtFPh0}gkmv6T_a``0BsDT$$)`XDQg}ErAm#oGW0j;<$0S$W9GMsNj%D_-8$NvHK0oerpY5d>jYxo~f|9?RJ{{i*?j|KG`Q!KxE5JyHzUYN$f zOc5}P&h71Obn^n#4S3x!u(0x)n&$t-$SC+tMoLG^!C}3AH8w$`K<6{Jb~+qm_PrNr zM;B?Zz%lY$n#3LFx1UT+{D{hyZfGwS4kdl|tK!|qZ{axc+yxPML>Mf|sM>AGf3I!OWH5ejQ`pEaAo zc@4d5uRGTHY8xFxuSuX3m84={W!_IjH|SXMIsD^X6~e_!Hnk;6*6cqFRLD;!KHw6c zVz>l<8liuR-_YWUP%!nOUc_afU3D@1sZuJtVWPueQqc#3E4ig&JJpO3ol)-&|I&UIKuxgEkMao zb+c|xDe=>IvEU+bU3+f94qg+7&`Zh zRpA^(y`QkET!;N(`S-}4!K{jEtM*D{+7OxRie}2R`zyScIyC)xMacNUgDyytc!@8q zP;K7&eXenbeA}+beK?H($(fS(X(?uI=sL#%Sj?oM4NeyFv+fO-(g>i9^^#*7v3=1P z%a@PzY{QWbETL6xjH|ioSb%oD_G>TwqNSx33Tm^~$J>4Pdd%8}hMrxIjUS10T%;dt z9Y@)CS^=2?+BZ?c^8BbCPf)_7b4xb{pMnNdAZbl9X!w^c4FD7eZ@?J68`u5SdU<+a zr%e4Q#Aer!bAE!Lj^XR$#8c<&{s-PB(Cd6 zEl2P7i>Rh`1>@otg`&aNqCeV)4CTr5Vim>?L;&L>75!C0Lo!x&eW&SzdK6jm$7hu* zl%eA5X;}mxa!)@Bs6#7`d)&*OEI#g19Nb3;XuRDJ8#IkpW65Vv zeaQb&qlGZI+FY;&dFu7}G#{#l#`+MMR> z$Ya0YsIytJ5noMx0STg`fipd(iffqGF8ClqqBE6aFsd9NUZyh70Ev~S3xM9O7A|!h zT-|||P@g98woxd3AmBCLIXdbu%nlGPY;Iq6QUHfg5C!udw6`UxXuoBFc}Bni!}`~k z9RSi^KVEf6Y*&F6lXyU4K7R3ybM5?Q?UajI{>iC0%?nlTJ&h}8s)D6$=X8v2elB=u z!36@U^UG(k_*z`?x9jbbn8!24^ZcLX^D8;hRspV`5Wp zq8SnDBdQI}gd>W(k%_ca!qI~0wQHC+AE19GT^;Vyt}54ipEBQl47?@GG7i=AZldsn z{xutFKdOHX>Gbg=xhI>I!AEQ?phDn!#}UlLx)XTv+6Z^6;mzRv_&v$vUJBl%) zRYUS^m>z?Q!H7gxF2<=>v09CMXUasL1}v;W@+eVIQWD<%^6CQx=;A$@@&GeCfplC8 zkd)=~C&NbbucMPwKah^WL0~Sha7;3F4czRujPJ@WCu>qLrEWI}ve1G>GXf%+q>j-S z`fznRA%iVd(UFYlY-iUE^u8&R_9i1EM36k$R<+2aCxjxdm(EmjYME`f535U{f9@sm zd=-hn7vYrZ3h(`b`7(HLlZY|oH3&Xtx9)3tGJM6W4;Yw%K2O6Xah9=Hvo+r3ZLl`1 zl`RU22<5|_OgrgK^L=6RKFG{;y@W3M@&p(+V>&nUe?7SRQbR5iCvlH4RXOeQG9=~VKoy;<$iuOlYI?TUOUj+$Tbm z>a?$DORY8W^yC9sC@^#xa=N$ks@y1prvksz=(W%BvBfK3{{-Ih#22NlV0VJd$}xFl+DwP$0Sjs4Gnt?bv)74-y&U>|V( z8PJ6%AnkN_@HIx9AUNNd*y8fjp9|LZC9EDxoMuIWXC`$t2d>n1+*V6ikn%XV$l~bJ zJ)f?T@712_9(YC+^MsKFd@mr+#XRr%)CjZO2#n>)ROgkG|GxXR8V{aICNepNvELRa z1W}ekxDaJ|KLvFJv?@=8gkuoJD!MmhkZ2>lE0i~z&_4J?iWD?Ig;KrCv-nC&<7q~a znsaZuWp7YdNFMN&^Qa{;s&{@FY=RZYtA$%IJ-~2S;=V`16udXUhFcSwXu0BlWla2`KSep`>Ub6V zvuXrrZY$tUiH!*Fjx4*mx%uSLp=RE?f#a(^%0^8NquQ6=u22-%69iifEV3t|hK(T8 zmiZFj_7HdtQkLpL(iWYFJx-mWrfMUkGaTPUl6z0fiIBKt6;bhLh(*FT7euSKCb0|DIKOy5R9=G z|3C$B?j}!)dtro3M(4tVcb2UvW>PPjbaJMDhcKWLPkuVle7l)d&q^eKMei5io3Uwm zyrgnVzkquI+rhn(5fXPT?o$6nOeJS+t42#?(D#1F>1ES}^V#R`oaaOBu{=8$!A#bg z`#XMIKz@%9)Y2v(x487}PLm#ad|EZKI@WV)_{X28G$UWt@}kZ>6Gr9dTAX`UBx1k6 z6O9y3x*87y-uyx!aj~y9?q30Y88b6U1wRj7oy^GD8!3uk^gj()y)>@3w_ezAvr%xLd9uQj@*u$iuuZ;wRlE+FB zPW7*#S6>{NQJ|833E3+9t@V{m>&i7K+)}+li^7ngcdv1~!6+AFsdeW4u;p2pd{doI z`}|{dAOoV3bWqRI*Xv{@X@P_H;xS|z+@!D~L%Z$nCQk{{^P8Y}<&ON}rHIz+fi>(- z;e*h;+4Y~$zXFXu2T|9v&_@bcM{8on0#lN99$WQiXdkIeI>!S2o?Q98MS!f8d}?82 zN)~rl#PgfB0+o8V+dGH(8Ym>^>9d`1p~a>d%TJI6))?fZYSEFtBClyfKdnsJ{-fwnl-HCuCqVc-pQH*0k@-moGv!8Q@948eoH36gV5< zL9+s2Jxe*=f32dSf!p7&dyFgMadiUQ+@pKdeIH4Mu_Y>P@u*>C=%jPb{m8eJS&~&F zI8dtWe7>V3)FwRoEAG>>x7IoxeHoX{e*K)XJS|)WN;8Z=g;yv4iwUT zs!YgY4hZ?M6H><;#(SObtUt#_PTuYFOTIK>rj90dERvs}*KJ&Uhszf2jF9jW8RM{6 z25dh#7SCHRKXLt37u(LvxX2i9utJ!r^OD8~xwNkz69pNRP%NT9V%7@Z_=)rK^A{Ya zoBmlk1JxHP5EH`AQ}lRJa&k!g4s$`UHcV||H?R4qU;jF&85jS=uAaIB(zQTz@8kJ= zZ!gHVIZe*KM+99$fN-t{<^&Xan5tuhHMBZ0f$j(PfevW{rLWJ;fl0po{%qLFBw~gE zRuhjB9NGu^NjM;2JL9xttFoL@sRb z+<_I^LwqKzau_+;8;@)iI-K>myMSM2-}b)#*zd{yc)j&q^&894EI^<*W%Kc|9)$MxYySANwJZq_K|mz- zojS%ZoVIdv!}D#UOrmEO{-Ia^y0idsPt9=FO9p&^dB7I26y;1C7-OoqFavr4!W^7L zF;;(%CGO_OHUFBFiVx#yFO zl?TrsLZT-ji=9kE<3=xkby1vRaho?s4#tXgKW7pdgFn^&6jiFC8=N&0W*7MXR1j)+}O(hc$489qTyCmJu zlz(QtP|=?(m&yq^gVsJW2pq;Q+Lqkf73rUg3^)Bm3kllTFuy;Ekmy}>?)a=zZNUv% z@D6}t*qwl)%u4wmdJ*OZtbGW$-=rG9d8e$bta}&*Q&}NhDS@MlrGCHrxLBIpg=|J5 zZPolVg!Oay_1~~|lw-NU_hd2UqB-4!M6!O&nXcLM@XykhXK<1WVBghI8&e$#j*()Y z#+EdbA+5tvrP|>1n{9ZK9D9Rw527Uc%y@f<|DrV_5{W_Zy@KODNW1hF4|RB+Q*k4X zs2r2(DW-vAitkzZSwHuL!gNQQV+AK@l-*?_7^PMPVsYwSVpwCs~ z^5_f{b*7Pc&SNt4;kYaw-G7327xr976gVmoKYiNTYz)g=?hacDww`G5!VPoHd3)XOHL z{O$I3W^Xmqtu%?IO(r?wEbsEleD`_wIf(L;iNIPP6<8hdW@24|Dav5}R#fD)8|65_ z{mrB}mn8d8AISV_5VpBEA6;Yaev?mj9Hj#J+N}loSsCDqt9y({?t4Txm@4BOcOwjE~D@1!H;r_q3cJ_ zcD!>Y-H9kkYR-#1+YyMWAR8{1c5_Ppek^aQM~E*4m&@1MjKR&`k%(D&j!^CyI)x9i+#wSt2V!K;6IkL8}4FWqIQY8x2b zp8KIx{fwF(`7{?&+Z>fp}Q2+B!Ko(K=!}v(qu$TZux$b zq{aKVACUbu2e)v5Vy&&0L&R-B6!RiM+JO{J+P2FWOnP{sH|w0fLVEfe&FUGw~%gd5cPVNsr<*+L57UdG4eISl$AKBNr<7tA5?4bp-jy} z*W>Up5NjoT#4s{D9G??$6%tR>-n@kAZt)dW&gjZL%u0EyIq@dQ)JHE$XBnVcvjr|4 z(9@&*bsM_=>!YUfk_gp88Sp*=pPtL!FXp3vT3VH&Wri;s5C?ukGDUkS^#xs$HD_Ea z2KUlek%(2=nsw!=gCJ*mj_Z7&E+`0Tr*jlsRD2QzY@;#whzx5= z5P+2+XG-eVF3rv*4yL>;J;fNhbru0zBr2Ot1Az+Ux1^;zQg_{_9D=5t%n$0L43ZVY z-g@2&D&fS@k{Iu4K78o$s3Ge&Y`ckz)`j~tiX1<{Bck`$M-=p5xWTfYm(HDV(6j(~ z2EfY{EJ?j;1~|P*Qtb-4N|`75vRbC^(Vu9SPS*^XLkg&AQE_EL!dOGlW)UsgdkilB z;}U}W$0Y>$Z-4zyP#WaFg3{0-{}q&m^q-(K`2Pf@!Tl#F4f3C$wEwv*@cjJm55mNj zNKhShbratD!Uy$eBQRfztm$%0@+B71F}Mj}bB2^GV%Pd=l5^R_8!2B=keK=5OsO6$G+o5A}XqselNZ%wfsy2 zA{Ch)5@{yYZPgXFAHuzAR^|&*hVxU8sdee5Ejxcbh~O;g$5hf&=P^ZoN7sHCnpbxC z@7Oe7jS!6_(EKWU-mi_EY}U{qO>(*_POj9{y#Vl$MTdbkgz35etaE1l^TBQ|3)Z zrgw$8Cm}H+u}Z@~t>Hw%hv@&L$Ib2cRXJJ=M#D`{vbe!|BUib1;ZhXzaA1|r`8pz} z=msn5Y{aP{zp062d3m|f_mU-r@9_ysBE1r<(G#e9#UHON5aEOUBEUi`TN3;AjgRD$ z^`Pfy{-*G5E-b4wWvIe2gxsGHsFb|?IMQ=brNQc}lMeY2VmHwf_#4776ullVpHqIC z@#qj00!iyaRG5X3gAO6wL%$Vs7eH4UKw!Yux9f*TzldZ3kRJ-XC5>;-8NlH*_1Fch zE4ClG>{tSFZmXC@;of#*zufw5Kr2O%>)q_Kywlkcg(VBDNftmWqUa^E1|5@%T~tYr zbo{S@9%QG*=Kujn&GI?m+N6Ou3B-PZc9Q?zJeXn%HiSIMIiSP@ z95-spALLDS2!D~t8sVu#x{62|7_laXGei@Ed$}%?M+7^`Tnc&Us&xqT2b?YKs`YzQ z;Le2|Ol)jyz@D85&W9kprOI=E=HI(+0(eOB6cMaz5qRi-M6z^1ws05W$tFrM6<&jF zVPB#?X_wd{4%4YAFelaUdFFu8{o^s zt{B`q7k-~WVmPhr-%Qgo0|oJPkwT-{`5yCaArp*H0r2EGF zA|zRZl(edpF=f!o;_?Eckzv#VG(fFq_SWBdfAq~AQ!ev?W)By4ViEy31og7a(y>77 zu+WtRMgBXf_ZfYSOf^ek)Ua^suNEJs2KOV+x4J&320GFY(i$mNCME6dlps4Frq6T7 znWq4aR={seoSfsko=@FDQ6lU!OqqtnRm8(F8}7`j8Afrc!ZQnB$V@g3aSF+ z3GTFd@aw3k^1pC5IRx$|&|uzT$Nz?Ma8RsT^j2B=238sIJ+HEfoWOey>=wL43>C|2 z{sFHAO{a>$nnuY*yodo++8tOtb8YRPcq|>d?>VYhClkzoCy4w9j27l|l6Er(e(h_h zS;5=wWzfx;pO+H8i^)kg(d@SeWy-XoUtyhTpKR7`>&+H{;KjuE2U0=)~Gzq|9MV)0V*VX$Vh3oQ2bnBZBuuV(; zg7KWM`RV*ql7rf&hj@a>rYaqplaIaZpZ3%bc?n4zPGs8U37x6rGqyyUds=QXOC^8@ zh7>T_8e#dFCPH3_^Q1Ud!hOLR{vXiQ!&;<%FH{wcVfbQm{qfJ``etSW@_wE)hVP$; zya4RTAc!87p0!Ez`7h)ueWFcxL=_d3AT3GN?*p;@%d%PsaPn9_-gFm!&t)-a1i+Dk zf&z%&^yM8?9Lf&hK*4-{oG;q>;|DRY4UGrSe74|Ag(H0Y;P_JLE@Mh^@&T}6VrAT0 z#dNN}>!-@t;pxwyHeZ^u2+HFC?Pk_mo6GX}I~QOjk)rMXSjJozX_3m!o`vN(tce}P zf5YeeHev>kz_8)2!(7+&dtxlVa#vW)w!oVMrJf%=JoFRr^2FtUo6BMTEpZk3d?Q1Ku!{&>QwJ^G(RmhS5j)A?(kC1q{7Bo;6Qym^JubttP9?ET@DWA8Lv zo!};c>zrOLx3Q6Qb#)a{&V?AgdUfXyfV2z%B&Pp7fTYV^t3J^uFr3vC1V*&u-*6(7 z|23Q_{HcW^bR;9dS56iZ@44mvd_2p^W4KxIeOn3R4}5f^??&yRrm167nM^-~crXI; zUM-9>K#cS_P3J6X%k#3?IFT~uLpgdvkpk}Gs(d>&`YoIN*R$pyYaxT05wU*(UVIH! z+r&Jo*qG7pm)W40zgFEa>+$C5HZX^)BQOxAaCi7ZAQTke59|s9n@WkI<{yQsygjWj zwVoHm@`aLktU<>IIu{M`Q9{M$+iW7i4jZJJEG{m_lvjWSV8dAu;61HLNAA=Q5Fj1z z)!E_U;a%U_Y1=B@2ctE}he;!dBr;&$hj{JD$;k-%?sr)X9}%$90T)&n2uR^uKh(o? zcC7LCpG+5TrVr)h&}c>f@T8jZ<}|hY58h*#bkp?6JwG$qp6S*CY|gj|dJ8B*hXM)p zx4&6R@I13?KA6<_1`2wwV&ryrqxVAq$AnDLi(?&F)iS2ZhJrAWFAkr8ybgaVQ)H$4<6%S1 z2S?6xA}IyObRkAi)P9gJ{ve?Nqirtz>#x=(@4ZoP#)kpx*7TCvU5%T$W-3iQ+amAj zdZ)yA$&B|~usq@Hd3%S{TQBBY0boja{i}DPzxD4hPkd9voDsVbKoib^;o*Cr5*_rp z*^m+S2P!zAeXw2VNRrRz66t%0hQeu|@do6F0Zn68Q4t1Mfn>F{c2A}Zy8&tG03HAnTE?xgAEI5NNqIcvG3e?GQY-str6HH-1AasR`N zoAIC=lDZ)V>)q!C9g&NIL2A6oe||?)W-aQ%nsge%+h_24ZFAw|D=7 za_Yg}ZSD(^M>JLiZF;xW0jd$jso2Q&@MQo@IdV+iT%BO{c2)QfWOMpR3x9z*NA4kD zWB6fF874Ldm)pZqZOlh4ux0(r8!@G(8j&oCEoYKA*OV*n??#ITCf6yNtQ9rroR`)K;s~0#ogkfm0xsT)%4KezFQZr&^qhX&}XH`vXI)l-t|VT{`VF~ zxZ~jRCXdJ|>}2HMV6hAT{ytIZt5V*b*=B6dsSx?Zc!$(aR_Bt;!aR6Ew{B?=n2$-~ z=3q^XdGD1x02s`%@OWtAG@2B>vFVk0gu)pRl6keTl2HTCeb(D>uC$~leqihk4!%p> zz2K7-Bvva4&780@zu%_H16Hv=7>mvyj0O1l!*(zNsw{?n(TiT7BU0pZ0Ot)MUtB*{ zno8dYz!7N!7PO$hzpv&P#B{H~Ma ztDvAD&5HNfgbyUj-T`%gr^acU%i(Zvvk(w~xJ7xsxD6oNf)ehs5zoqAm7w5Hbr3nnvuRk1bKR;5l z<@g>8X@ejI&*uVcB+lv|*ocwrIwERiw6?5_4UxA}RTT$}EYCrxX?!L8)h-C324bMJ zqeR7gQ0?msx=%!SY}gMJ6}Ouix9HEkYMmRL1t}y|^qd8F32Oh$yDC@tYO=E|Im?#U zSH2l(?R?Sa%7AP{x0_L-AJ#!QZl@}Re)$}2u&iICJ5lDQYKm8Z&7dTSK?U`AIHJoP z_c!f0l_vvxV91^D^7%`1BjN?jj!)HG8RPh9Kk&$5>5D(oqK;fe^0#Qv+rn>%h`h>^ zXyLlw@V*ptSA7Xt{VK>dro5cot>C+6d|mz=`8EFr4rTiHWC1V_;+J!tp(q_3; z_Zni~yk1nYNxO$YX7}4YRUDVPvYByWmfA8ZasLVN@Ji{C%eD4nLgU}m!Vw!A=1%fr zo_^)XbrAijL<8U=Su2Z@bv0q=e)uIB-gmER2hcD$tIbmHeZZ-`#kKWWuR5=Nw|4b_ zg|$~6FfiKawv2?T*yUf?z(7dz`p#2>9z=TBv+DyGLKht~Bw)w}_>3ppQ_E>?^F4iM z`El}p!#r9;eE$jZNdNwCA&(XX=Q=M2tv4A1*pKk_T$ZC0bFkn#UrEfNU3J}8$|QYi zcNFlmwC&EHe_36>Dt`znWXoF~A>IRYI6Fc6^E&RZ5~EgpDLSs7hI#?J#|em%!{h%U z=pi74s5!ZL>85oc8&hSA5Dpq(1mvUTN7{d-=S2E|5e~^SzBzteGLO!G{8J`|HDn&L z{Q(ESLcMMb&Ixz#ApQLM)@cyeta=#4qrCxPYS@4DIPY*!n1drUHf*Cn)nRMH7WtIOXlvd#4PiLKZpv&3|9ml9|iJd$b*%gaM;L}6Sx(yIkE+K z3aEs<07qCrZUHWt9)By8Fgy-DZ{GM8JAl+nC&1F)77HN)J&GkHAH0ztHc3$N!}cQ`(0})}=7ohDwYA$XDk&m56vl<65)4FH z3?taMW&ED81c_umg$h)A^w7^H=?U6vvVqsw5p6dB1_~+yX^^1s2Fxd^!J-9142~#N z=Rr0v;((5fjLh%0r`G~Qh{K@N)Gzqy6IF7F7AM~iXOGZQ;MB*1=!X9l*yFS$syC~q z$GQek(Mfyyio1u(VtWtJZ`L}8unYc`)v=C{htx| zX*|!!C#2ar`M{zP*st;R>5tb2>|((7zXbT@OBRVmFSbyi@k~lg%7zwTWQX0+hT`hN z{urexKFA`H+Mq?3R`F+}gI!NxX$=|#6GyHJN$MCQ^4x(@()UVC!1@JO#t>@xR1=*B zYN7%icpsqA!3qx0E(v@o(6vS%`=k4jhuW4suXn|ZeN3cYgiRn#hXNXSD1S---5~rlTp?5;-R}aY9FX%|4SJ=`K2|W8n&+=J$it) z^2Z=eCt#}v&DGL4))J#c+4x;pjfaLdW*fdF%A;2=KD?G}T%9F!)hRDu{J_p#}*q-(1=g_rGWeXH`_F^tnAK{%Fliz+EHI{K)HcTzKFPD61(e$}7c^&`4>;+E=hb9alQ zmVE%ykrZ)8EG7Gmz6tdBfAS}I^e%il0rYehtC&z_6Jffu-L^n9g`Ntpkm|=^73NoO z^Eu`0Cn}dv9tSYPTl2bEkckliia>hJ9t6Fl@Vjv@VxDkwb7y8}-=Xro=D73jc?&|n zm<^R4<$jhK^!j;Hpa?sX0Ds*62Mv_8&alLRchOITM2Py8Q62$=0#uVt#dtQBL>(b` zW}OEzG|E%w3cj_#C#}!OKgR|V>vfXSg7MRTufo9h}zAdmGGT`62wq}kP z>!1YH=f)4F-D){v9s*J2n;-b;e$SRd@*EvmKT?Mc3+dO}J1;IsqCN&uE*x|a&L>S2 z2fpjnU3PQ|UG@FK1R?Ec>!xUfd`i#PS%0=0X8nnB0mZKSL~JWUu>=TiF<{A`AHZ;q z{&;PczV1wppepjIM_&GbT*4e1Hn`_EwADc+NiQA9qZ7c|{f~8ohm7NPJcqc76lA#| z<4U~)49AkPz)fi)6m0-tAM^aNN&}XY(|d10;K(DiJ0N&EGAatJe+a8I=2$7U!&E`+ z1Yb;ygzNlVX__xZ7+aW++0f}a>M5vM%i>;0;7LV*XSvp(@ds9EwsKMJ4qWX3-QoV| zP$mAwZk87q?`Bq2aUqsN0CNBm&5uTxzvBikKqKWu!3Yi{(C;1rDE<*@{vyWtA@T$c z@Jbu|^_?XWfDdS~?(FSmaP5>(DGu!|vDZVjpvvo(1laGu*gN4S|8OrmvH!+ zSk1Feq9*Y-1;(5dz#l*htGB?k2oNUA;85rF$1aUI6smT}O6#|A?has;n(XCeOO1S^ zF)elu0y>B)npYJrl2}04Hv_p}pb|C|xkoFk85Aswi^k2f#?Pd~=(_jw{odZ5f6?i} z@US0PM`?wp){nAUTd4q?KJ-Ri@}er$)8Df6Xwoha=vG=_nFM>~)sWAH5aq>ysc=FZ zHl1hko|SpxM2Q_R(r80PAP0V;oX@Jp|Ap)CM@zU+uWm zb3{T^M&uAUVzFlVnovafgd?gDSeHNsPM@))2LhsorN+ZtB;HC>f4kbcL^kFuAZ2MuZ zY9w)o7JhQ$wb(Y#Cp?6pBlov-Y90P6b>oDT8Z@+mp{PQR?#&U&6fY%-nJv%yx(0V23zUIi_k$&^CSohxr7|M9%oOMZN!Nz>mlDOLOgQ)fMKP3xK+9kh$?q51^meO(N3kw`8+FwurF5QYy6gE$K$DFJmNcI>ONjb!G#YbrNl-eDP#4lhd>D( z(90nZnW5e3?wuRhVQq4+S!tGi_PGSrv$UOUo^6C06zeT5y7|CO> z_nFVbCTb6hZuk{>9xWm2pdz2^tbnb>(a7feD1naABK9R(3BH<18Z@ELEt6`MJg?9{Z++HaRG5p^TTekh99tJ#E35fhC$BBgH^*+!iWlPbw#OR<$`U`&m z6`UnNfX(qm_tnTk6flW(PBgBHNGgl#;XC22q}?>H$s6m+zPHESvtuKQ3h+xX$9f5z0)& zM2jsCFzd(3ad@R@C{+#vb!qix>>QzA4(>2X_H7X^@HafD8M~rFJHH5e-xnNJg+ZfJ zL)~+pqwda`(D=gt1L#B_leyRf>Xk(}T6X6_I<*`d@X`Kmmyu>P67u-xmP+&t56!4HU+fWX+41MQWSifB@Ge1B$1K0?=A)pr|UQnQ$~WUP@rUsnH_C zec;Q?a%AH2zY9@p$!2#-6Bf2G@F5Dp|1m~WXKGa;bjaTNO!rH(33j~1@wwIy zftLn|fweo`|A#Pz8VFM$QYwH|{3pf*j0`bg>8+R{f+Zl^K4i+3z*Uu6-g@hyQO=`M zR;x5TqgDV`7do)IAjJeu<}9Qi)#FD2aitK~QSf4#zjb5bc?Q8Jq)~N-99L=)T^;Ar z`=EMyP<`@ER~LOK(mqs{sfJ#N_wCxzSpPa>_66OeZ!BSLoLkW~$$G;mNHiXJ0I^RU zbM5@q^{z)~)*sKp@6*61i&6TKs7xG97W?WH@=&xxi+r8ig+x={Rx^(^_{PSs*;KB_ zVTmix+*Gf7o;*?vqGogAh5dz1G&>9~Q{zB5gvX!(^d2iK@*N|{qK}g{3(g& zY&<#VO~~029qgwp{|V&J^=A{JNXhqnC(@RKO$eR7Wh_@^G`{9uJ|&SVr9g|T$JJZ^ z<_;wZD|cPHcEP<%4S*It7J2AltBZlIR_sCUbU-5YuT<8SpuSScs=ZGIg3pk`ALk5M z%H;P%g?(4=1y4aOi}pG(1s{QKlbwq1S3IiiIO4~;g_OWV7(6I+d|wk6z47RYD0(&9 z`W1D#10R&$QS#4%3S$C$qn{eVx{1uoms0AYS^h2!VQ8GhdJcO&Hb~nXuQwe2&>5Dx zt7ijDmwD|K43QrvffzNhcr(2QPB+oqKSB@|K#{SS#ikGpoS!!U?pDu0a2_IF<@}tV zWvqsFv}Wkw>W1I<_L+hE(p_NDZv@C$J%>+afF49p=t3-JjcEmJtI`e!2p$j+M9nws ztB66D?DqrQw(0mUe_ef&0XBi$YatAM#8xFiZ~Jk)*)cl{h6=ocfn4oKL$ncRH^}S< zc(U=SqgREQm>7bwTPMmZxoP_QahMx?I>yQb*X!*XiFxZg1X$-(xwDHCBqQZ@ncSoc zf+cFu>uLS>bwNVQp=n1TR%Mj_;}giNzlh!!LNVlnjVZkg(T@dFCd!NKd?b0&f8-rc zSZ^Y^xM2IGv#%{cd{B1iNbuICh?@r5cRJ)tN^8k}+raEk?3LbJ(s@^AV+bWJ)&nSk zKOyi|d-_MNL4aE=IADvURRj)aULatwN~-UnH{bw(*OI7j{Q7i98<>KLwwL?f*u=)h zF4h5*;Ey=M`=A|FtJOzXF_ph!W0?uq~7E=t>qa7T5{*^CrWNRAGUf1%ulzA zKA?)-PnvJds26X`?mgc=6wz8G1`Ed(G7Um6;WVId*0ST;T<=(j%1`@NoG!u_=F_?-T^8Ij;Hge~ zEeC9|rtfu1f(UC;;#cZFrm-7Xll4%SrBoxWy?tnrZ2s#wLyXLb{rL8s>7 zf9C=u4=TK~N+v{$rKjky`lv3JUJ=<5UeXa|A`?$5AIqS9^(tw!S&wbsV^81+RVwUr zyd;_ zC@hDgEiR<-S4X~-slRnrq%#EJ7Zy1*=S%Y?g10xhjI&BEb4<{^A9Xz(tQSsqX$Oxy zF$uf0FIMjbz*3|Jjo}qaD`new4LueP!iiU}o!4(aE{qp(R`dC)c^>gO@TGqF{kD-e z{*m`~??)k#sqe9H&oJaL!B6|NRR@>?@BHScR>%nbAx3iMh1m!1&j_X+>w?$#De|+( zWrCNjCv@po=y12O+09AfRd+?3W_h%%nj&{B)(+ zB~Yal7y@mI69(&(fvXo)6hf{A`S}(GXU~r~UaET2}7*54&dy;808wBcWK5Y*rb+sK3g+gS<7+Zl-@V2?H6OF>)P0@|NE_*#f}d-S+3@ug)E( zjH^^i&m9g5LFX4wTd#ko?sH`fDhj4e7D0=TuaAa?E+{P(qn3YiaEd0qw>hWx=~tNQ zz64o*zTI3Z@>qDdkW3Q&s~@~`KPqHP^Vuw?O9v9x{UMMV_ny$L7A-yLN3AQD6zl#R zH}2DPK@_?fn@uG(aXrzD<(;PV$m9LotI{Tyakwd0!q3`3{;rHI)1 z{&c$!n~sEWuFpd0k1SXu+ui#NgyEZj?lJ)kK1ua^v(JF<+%_N>sf&o7QAI%@nHOGN zB;(!T+HqC3slr6>oQtvVs(Fk&fh1z5KnAHVQ)t4>?~VVmpy;u!IY$mN7-G8YYC_zX zC7};^##{WvHLD*3O3LxMxtHry5XjFZO=mmCjpa!vR5H}m z)iHm3u>q`d!B2%iSj1^z<2VDKgI}>$e*1{H!4qb36!8>olvlD`$DQe81o#WOv7xb ze!gKvvOQx;_lrqrLVyD2M?VWpnTc5Amvy=7(8$GE5kPdAk`%UpiQXsxrJyW?WcsSG z&tq1?7b~9{Jx+?|J+@1w6ObX0c)wKRO;(x`EFTHR48}UW^sz&~f&MQncVigS?$aNa zn}-d;S-zkzvNQx|{W^7BrEFA^5X*3ktF-N&?Vi1Osixxle5A7UNBM%vMl+X_2ovf6 zpjm>k?;c&0pD>LJpH;nC!U{HKAdQT2jTzglj_FyU zSdV)ub>Zd1{R6PI^MKMWwr@55CrJwgVszLv#b}+z1a#80P^fB@_)EcKt=KG)q^(c6 zCB~aE*MhHtN%bdVWI#s(AAYFp4!~RneBe<3`2*61jP}!K zjeh3JGu0ZM18&7L$+39YJ?N;kzMooZ2z1S}7^;+GT&k3^(vL7&d>clf#^|Bl%W}D@ za`|J3D_0dG1k7YM^B6(?mD44hNfF=zpMW|qnLZ&HsN%YFF|PGebE_HzA9D)GFUa)A z?=Z^u_Kkl~@V3+vG!JwhMdNKOp&bI#r8Aj+hw4h;9n#AmimPsR8Y7(QMH{6$#=;%eEtU87uTT8hZ3QF5FR$w!u}ZZ25bs2ATf6KPQX) zpDt^5FQ5oT+@mjS14>im-)?%^Kn+Qxo#KRU{LF4gb+vAb4c?Kv8fSXm&=+KernH5!!p?7j23w4j2By`U!>snwFMove#y9y@$ZT?1@LG} z6+@QK?HFS}^T!^dF>z=q|7v6YZT5Bc;;5*b%2%(sx!D8wSRfWJ1U#Ip%Gi87D*xAF z;Mk|9Yv_C#*L%`4SW!Og>~%26C zV)`X`88()03V#Vr`YlS6ucta*SVUvARe-A+vSQoC7gY0sr*(D&O=to zycHcZ4j+d(zHAxzijXvH?e0!AIISZd#To42%{WQy<{E28auN6c?x^qGv#G{8Rc`%g zVZ$*VQ%Ll)X_+B>Vl$!h;V#JtSBjX=KJTi=XP&ldxHefqEKfaW>GizbpS2kDhvw!q zD>xT0H2(tB68MqQWcnDO`AsPuk95>}dj_$%8)Ip^2eB;etdwyYQ0TcHK@x-Uuo=%P z(zcjcZ*qD`bIY~Hhi`;dB*hW81l4tUz^1izCXxRJ{3#~D#|9?^()ReF3x#)4vRXrV z`A9B{_G*iWi-1H}gKZ)|#T`GZ70Mm;!Pl#yg-@JTzfWW`uAaK^HsZ5<07GZi7>tNdU_XM(W6SnTBN+G2W^A}NWnCurm zXZ?Oia#OA`aq$#Y9Uax>I%#NpHD05zq~pQ{0~1>*m$92>%dk~$!pKPDjHHq|%whKP zkF140mWpWcs_Cz9t9(wYGI$yzq9xgh)jd6%0DI+$EWrE)oz^1caz{({oUYH`2%n6r zd4RY{!fb^_8ntqZJC@QDnT9vpnuX+42B!qXNjZ^UXCV=&(Dh#drsG~&ejrycdkM4l2a1W z(T!>y?fRTorbQ=%Le9odTEJV7Nxv~6P(6G*m+vc)q6qw=2;yl8TBgen27Fd$;Sm!ARDptd5esRl%r!Ic+kjVO|1rh(cC%%gatd3d00JZ`raZQb zl0I)DxnDn_rCv?C79v;gN5*wXZ;c6w$wz~Ue3*;%RPvVhlJ~W%?cyfu7~R)?iN{9V zlg(A_HLr4Mm;#(S*=9g?YJ}fjo#as6ya*D{Vmm7h0dELQoJyh>JxX1yE`XC8@$h|M zy2lpd-2gEPQ3Fqm^d8e##r(KFj+a=Uj%K)!`nv{Lx8wLdrEXF*iZ8d_%%FrrA7M9S zGso@orPlBZo17|!+@*!`-owyA;fps=WS?9meM_S_Ed|~tTIhE5`VY^gSj?%o)kcq} zF{AU>1C2l3vQjZ=o!MJdhko+sn4X;GZR>{JY*pRyU~3kW8dJ3pQ9BYY&dugUl@~Nd zAw?j7-H-2rQ#`Zgf3z5FOG2 zq;n5`CDG2?FWDO}*U8H`=)(JTuUV-hkrG4wj|UKi_V>Zi zQrIzk<-&%uIO=lWAomu_j`KhkroVo|4zf#$(GZoI}&%3CW>^F^vA<;EUfLh zR8G@tVm`-nAU(hC4S`L~Oet!YLz%Y6GoA_V3c?+q73s}#(heFHFHzK=xHOifTGp?f zYLRXcK)e8&py}XH&ZbwNi7*dZcI}DoUY-HRVSs9vwq7;0jv*ZKy|;B2MnT}KO{2&p zU+cw7@1^^O#Ah?>B4+~Lz$!hpvet;b0NDJ6jFnmK?e9+k3ukklU4fJVrZhTy*vi*) z1xQVAbvg94(TgRr8@aT`%>GHNoT(k<=ZF!1Qfip{$@h1`{7tXL#L;oS`ir`8XYZ0R zC2v*DTchjX(y6_LJn%Qi-kBn?RzzjOYU%>@-VtKLf_uc@G15|q0+Gb|&q!o@d0)EV zUrwm(Bw$K()6}7odDZa}@6_G7l(H_p=Y=$#SLl{gdTHk+HDE_K10_z!@(^^s5)dRJ z#YT3;&r4_2;b!qJJsYpyzWy{(Iho)nNRr;E3h7o+u+8HqxZ}sjzoe``3C~wFjCpcm zXR8LED_$WDj;S;F#O=}IXQk<~n&s(o%$zZS+9dQuwntY?jMa{AYhgIAXh^lMbGxpE zTBf3yPhFuCsuiDlZ1RoovU(Tpt+H)!aZ_zLwzcrJ7_2lpK06VJhfJEkBda>$vMPxN zNq*TJ4{>&J*&NQ2i1`dC(E8hxrDMrFFd9LctNYJ@Lh>@i_Z;z@G1*|D@SeK zw#f~M))}W4IYhs>sT(^0h0;xcbEa395io0P48gC5PCD?E6m;P*9MKYx5n}~R0l;M4 zqCPhDtP%y17(tYQo~e;kx-FAG1fE#6rN*op+2QBq-0s?GWqU)y`8~QWj?5V;pp<8neviY|wBh#%& zmV$4l3j6lp`#~W>SGpM9TMWm2&iWMh7jBzWuM=djCGP5ZHTD~(pIc|>@{E=;Mz`>*;= zhWdo8J*a+KL*IZF#DyqyvafmHH*5joG6Mp&H*u=0MZtG^OAX4t5BS`zLSCNHxDlEA z(V`NykWVHQBBO8z`9iynWa-?S^v7`CV%rCQ?|?9`#5ib0KE=(#!7m4BloWo`OmUop zo6_`NZ@^iR?+sH=+@RMf9#1n-n>xsmD3~bL+y+X41n#fl=LpS(eTN$9UIAdnOEl;y z4vE6QPL^orm~v_#xyWAL?E5~Qt#tt=ck(f{_H#vGWYx`k*o@8~778qEZ0os3ml+U< z5^D$pNdySNkzug$M#Fk~%GeboVlfGl7jO7c^$`ITh0!6AoOQ!>mc6~UXxUt)i3L7! zf1f6kO=nX+RH3eb9DTw|KPJYayw{oh#EyKP-KoH?p-4o&r|OeKu-D%EXyy;h3{$mw zR6BEmt5aVt`D8*YR7itod~at`=TW&yB$D?Fmj%Z1o$3VV`ig0T=8C|8X`~D-m?CW@ zXI@lyfe&Nd)sw-&ocr*3WbVvj%)GjEyC8=B)5dshjENWi3K<;bW{@7P1he`w@o6y^pZ)yh zvRp;OQBwFWN{+ivPlCraUw2aYxqJn4p((V<4wi-tL~;V@9<@H z&U*L3`X=!3LCj~dB#e|i?&zEDsE`;(EQ#jZ4`4NN`dM@Km{ItdyQlWS58TDVt{xjJ zuE{|!jeRLqK|E`f&B;U0v6pbTVOhqoLr&ks{`~?Q1-nmgi}tg_f}vL*{qhRMx*GC3 zgt+cH6;L~+S3y)Q*j_r>U5|SgtE*gg2qe{(uGZznzx)|k9?xrnRbs#X0 zLRrEs7iyo>*!;vyaFX%OZStJ}wG0VTu$QX!^~_ouY<;2~{KzR3k~!V)M(RoZU>F(a zSth~;#{<|yO2eM=1&`DL+3t_zgBypSP-F=c;wcZd<2hqBZxf z=apRc&){l~`X>(c-alWP^;g2=Ox=&iG+Cy+yd}2}tC&h&Ft$D`Y{9bAasBnPnkP?5 zUm1SM8@K$CaW-}tH|_kX(&$BZL8=1D+I6GZzEs}4*7H zz?bJ>{+jIi<@Xq>n;-Bd?S5xX9yhn0r|ee0g)?VtqNDjc?q}PJ@J1Wm-85g>U^7M; zJ~z3qTxtj2i64C_ab9JL=5K^(LvKVVZZd9BDc+t&hrq8g;4fCSwA$Z2k`noP)7NUE zt#dUaG;>leI;9_?BpXvnu{_lQMg)1Es;f!LD@_N6-|YidGH@C703^hYhxhBjtgM7z z+u{e_ujjh@({;u1b;hv^)hkyYMh4Bf79c=IO8LQV7I9?hYBngfyyS%k5Ki$K6 z6kF->$6*W6EA3{`dR3P*y1Ke9M{B=Cl2NIIpNitODO~cFe$;juceJ`bD_G)}OKT|U zpPcQ3*zf!(aO7qY+R$`ZHxF_+?GrU0_XR)kIw>_j>lDLt>=Jw^TIFM^ZN53*=*&czk&M=QX%P8y=>L|f zc1j+B<36e@Dr?6%*7JaUe)K$pU|30qZ{z(fGfy)PjY6y86eeAxQjnWDM*EQ_!Ay(F z1!JDrps8t~=val~;E#`vW8+|yPn@p3$sN>FZE z_tI;slNdaQ1X)FW6w8bY9MtT(S4;)>;-A#OuRnkT71&uQ^DJuaY+-eloo@BE=x;5s zH>KG~#4EL1nM)d3ffLHs&Q5B>5_u}MeOSP+{ z5nB_)%EV;>tS4FH#^A)ar|FEg$neW-RqMa)0R(WvlGIR+XW?V_gn*PNs3py)~?w zWp)i3tv>4Soj&c;KpeI>{Achm3w08`9Lkf(TWc;BnlB>6P3U%XgR9*(f(_)VH=AF` zG55jFqWNnnNxzl_9L6z`I{TKn{T%(JGow&l^si6r_wfZ{*vVXbb+{p;|cn4Y09yO`5&f zL%$+^M>S2f`b?CrLf&fUh9S<#W($MbFK-fp;b~~!l@~{UPQ5pILrP8_yRe^Nrv1rP z%lvnp?^T_efspU**Ou#5P)C0saeL!%yXKH*CpvxNB~lJpMCLzjL^2SCaD+S8KnT%6FUouh*Mt)8()H&s5E6@Oh%fEw0>(Q~lPt-d_TQMl=*80>w@ zM@&8+=!Jb1?fuwIKjZsL5zp=RpCKOXd|vqH-yN)>Br_?kh0PZnT)6bkJNY&yB%^g@ z^!FN-F5*hD3Ss{mRh&8L4DUf4+JpfmLeP0*ICeetX|=OpDYRH)6S&$td|&VW zwaPz8L38wpBngTA)vxY;u(3xNGP*s(s~Ly5x7S45jYU$VjC*YP$Is1pk!UeIB~h6p z3h!fBNziLu)??43dOG|0i^(>ZcS21qXI(Dlk$JLX4#!PzD9_r_Q(S2ai}lezR$0g_hNP(HiX_@&4Y<)Ec`!x@SLp3pXm%1(&AGM=r!MQQU-nd0 zSj(Y(j(q!_zE#Jq%}o+FNs>K8z179dZR`S6kloJXa3@ZT)LXRV!H;wFsvy+ImOQEC zxcRsa%H$ul%NQ=I62?_42@VHt+_B5wpI^&i#>HL_C7AxGS|G=kR{~&{YGEv|-OTug zDq-%&$WajUIK82Ys9>sdD%=b!STjsMX7*a=h)GN(h$;|`9|oWzQ^`%n#~R1gUI)I$ z(9S^?&6QU7mt9ewPx@4+vm}Jl&|VcHK_J8ivXWxz@z0gt7ZtB48N|k!d>)erR!8}O zv&sN)z8M}xZ(>9&_?*j>KGv)oz;#%#{%;2ps}Nu!{l9>TlK^)xovq10Z5jurqIL@{ z`u`!Acrv`N_KD-hNBd&|#!`WgRmX8HZcHDjV}mL*4gI3#?YlH4XZw%4RqBpKOq#`& z6f$vi=@dq!!Ct|PtyaAb+8D|4UIe;JZc2>5*Eo_^0Wi|>_-|n1_gXtpNJm^%prW3X zmq_sdBM4Ejlgk~SnJH3dq8;O&7#o9KYyjMD-oGqIsp0L-J6+{W>psSWmDoPV;@VWX zTq_Gy;ygy!`lrpKzJn{Xd;Uz?BF$ETCq=j_Jw`%J0GufZ7|r8hvNtHVwoz5&XP_sK zxo(k8s9|TS?H88?DAu-lhPW^hz873Ir}*2$2jQLIcaRb4+jQ1hdR;$aHlUlOOpL{Y zCc$JxO<#{RECyxbm?gnTwtO}{n7RNtRABP) zl<7B*W&pl@WM(A7vZf}C8T-6YlDAwytEp~V@OdqicNp!^T@UD{8(%N^0~%SDb!b_1rTYwc1%Dvk@t5;!?K<7-TPD^K@nYimnYNhuo8 zKgjg40j}#9yv>x_{K)X_VSl{di#Q{#PSfpdL+NJq2axf1yH(CK1kg?kp2pbd*o87{ zZPynfo|}>L*&GNQ@8tA!3uu3>oEcr}{uO4(%{W#|u-Wuz>~!*0FKVdV%Q1;OgYTX$ zk*d?68XQd^FUtVO^_I5qSJik*L@$TzGJ6#Qg#_=`z84&dDMY-qfR1boSXoaZmXqgr zoa8b~w&m-B@EFj@K~>G1scU+B2P%&tiKv>Rk?IPys6ucW+tysN!XJ+p4DlmtftU#K z`vIp-z>pCG2%`qr|LNA*+c`4=K2B17+2d)l$|BbsW-H=iYv!2dM-`7Qz5;w!f{jqM zhsNeMUk&3tHav(_{~lqX`?Ips)6+bPi;NAhq2JorQ06B6>prq5M*`Y$syTg@{KcxO z>_c6BM`93mnJ59TajIaRqaM`63_y~jc;^0P#LVk6Hs!N|va&Mi1Tc#vw|!UfB_{li z^#$LEa-(8E#rGLYNE(9-;8or7zeDSqt+7b}rRib(rkf#Y(A9x|M72qGlym~c9{TN!C6SxiI$~z@5zq(#SYM>E?yInp%wuyL>EI;+ zym3t_n3`CLF}KJT&VzMyb+dUxKl69F2Ga)}8&pAJKxi@re2;~>Ymy;+76FNZJH0HZdm znr{4Q19}SB-Hfaaq!6I7q)qdIhTe2;95Ks$&pKg&e9my-l}U0gcS1&85}56%ujxoW zo%P~xcR_5Mv6*fKcdz&PG2)ntP`sG#-C)GqC7te$sKVaVoa$&Wi|%MXF&r)0_SW%c zEmr5HKbwqAK%A9!)-n;VL+dLAzoe5?X>&aE6}4#j(?a`wtoW~BXQ@EPwSNUtvgQCr z<8d^=H!(Gp54P9iS&h-sVEST;vvwx2RF%J&h7ghtp(Y2JX>K`E$;41#_E>1HFcX=f z`WHn_x6SfkVwLC>>ut-$N#J6!>E^y80QFW`tdM&=wMmu?4GPH2Q$-KaqFOXCWDxBa zcG&T?CC{Uo&p^V#4!g+QI}e-^2$Euci?tTT7rrRWwyel*Po$M~bnqtadlS1iWV2G$ z6-F?98*|TODS1XAHW~$=Z5AVei76-;?@;;eIa2SClS2Twq1NT-W;K{M*1a=Ib?b@% zwTQ~+JPYVG%F=|~wg4S5=JRX*lGgL^)?q+{t9Dorq5UL_7=sC|*SYpT>p7NBDq0SL zo^Aj%1;L(>HuMBE+8Xl#QeeUB$kMMGe&XLv5xfqn!4vZnZQVadx`x*G6`BbO%I7MZw=H1B@>m zUQX8qz{o|v*wf|xE=c~S9_^8 z7U&Sd(SJPdxbah3EBDLRCl_IN!PVmeMUNt3ASY?(QwT!6!iO(b-l=n)DG&TsQKs>5yL4vS!N8b$r8f!M3y=#TeebJ=42@e** z=qTOy?(O?9HM}c(uZu3an)g5jv>YC36M>-Ep_YJYQ0Fvv7N%>6t`axZJ*^Y4yD}|^ z>e03vjvosxZwiJIhdXFq@Qy^vscZf3@H9)rc>PSV*`!&!q+P2%m&i z20WeBWOZe;5#8~VjkVRhD-kK8{xa0n&mXo&A3Y@EFLqh}qT<={R>^rvaIlVriJW7- zo9k^tCa1BO{w!y5@K}yBCK^<46$BgTh|S|3fWFGzUA4>KG_dnY=4LQ30loIMx3^b5 z7TT17Q>dDKplduHzC7df1_~AYm4!nj0^H!D@_ilY(Lcvs%wDMzz^FjXl3>^R5f-k= zIu!2^>C!?PnlOc2Yw|<)?xF;GFE37r}A3J%oCX6BMq<%l>GHJsLi9i83i|8O>8 zSQ&O92jLy_<$^=qL~My$AHHjWnO8$&IXWd-IeuLI@N`(Bg#-J~Rmr;|7%d{T2dk2` znqAq#Gd;K&fzrmVMb`+#^-Q~1TBh(-7qig(P)yG&tDr|OP=Z53*gWpEYS74qZdQS4 z(qnnLePr|>O^Yow=yJoKeiNAk1Dh52K2O(O7L@0rc5KqRC392Ey9lD>aATS3Gkrwv z6pLwNaH}^L(TcOrGT*+%W=mG_No%Shhs*8{z|h<>I0WL>M3sRIqGm@`+e$PWgsh_c zm11IL2KwSf+H;Nteub46$aVFya49{B# zA#JW>EZb_%;o<9KhK)m>D=Ma0QQ>4iDR0`QCCL(}kJ1x&-S;{zmn2l{Jd{08m{dex zjSXD=a~)V!mKTcZbG^+6UtuB;ci>5TLau@>Vrr*bB`cK7Xdn43fV!N5Llvybp3;(T ziH;a$iSHw!Qm>)x^;a4h`6|1ti<&Xz!q?q1I1fag>&TgLQQzsh za1T))-{_{3!lrw%`KI(+5+3z2H()5hjeBc;Y}-=m`ugHV%m^jhKPWWRagn*PUPV#p zn&yH`bux?*^+q^1u)-9cavYxWuAmtM>o-{YGG@o4BC{>!GdF~}3B{IQu8h3Fm3aGD zJ-VB>Y(K-bW4CJ|8_tE!ruF#0T_N|9G*~xO3iI}olHa#3C**pjEB`DeX6S z=k>a;B!*Z&m0*&TD&_yX6LAyQ%k*et&5nd8`w1xlVeemR^C{&HzuLai?wLozii3RD zCGx}HoGjDiuCbfpFm|o>z?~7o-MRYx>LwzkZkI+>_jd;fpGQBWTzLrSRPgYqvmg16Tbo| zOYXGf%e^6#mT|=qh`BP!!>o_&V*`JdR?Uf5qA1rGN@WKTTH?_0;QkLa$~M^>IMD*~ zP;K`ZmAoxJ-QvIKCBCW*G(+DRCcMN+v0s1f@DH=2^_A+{4K3|1@MwRv5e0}qjW!n; z6<}2+Y}6Vs)VE~kP&Uy_m#_QMZ@VuDY%J}KB)s9S_BRn%1n4HIauk``?j^YlYBKrEBfg?oSjr0dk;YqsueRz}X`7+@=jG9Dx3 z1Egd>_b@vbfRQ#@7^C{%VuX)dd?#e^;hF@vPxwsyAZy?){4Y$*4-yMr)DPy4|EKvs d-7l>h;`qAQ_+2UX&-pLG`jErH8guXSe*?)(Pm%xt From 7ba643986e5e95c79010058aab8377aabec6119d Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Wed, 11 Dec 2024 16:29:21 +0100 Subject: [PATCH 12/54] feat: show all resizers for hovered widget - WIP JIRA: LX-599 risk: low --- .../components/DashboardRenderer.tsx | 10 ++- .../dragAndDrop/HoveredWidgetContext.tsx | 32 +++++++++ .../src/presentation/dragAndDrop/index.ts | 1 + .../flexibleLayout/DashboardLayoutWidget.tsx | 27 +++---- .../HeightResizerDragPreview.tsx | 5 +- .../WidthResizerDragPreview.tsx | 5 +- .../dragAndDrop/Resize/HeightResizer.tsx | 10 +++ .../Resize/HeightResizerHotspot.tsx | 17 ++++- .../dragAndDrop/Resize/HoverDetector.tsx | 23 ++++++ .../dragAndDrop/Resize/WidthResizer.tsx | 10 +++ .../Resize/WidthResizerHotspot.tsx | 15 +++- .../dragAndDrop/Resize/types.ts | 2 +- .../DashboardItems/DashboardItemBase.tsx | 7 ++ .../DashboardItems/DashboardItemContent.tsx | 11 ++- .../styles/scss/resizing.scss | 72 ++++++++++++++++++- 15 files changed, 221 insertions(+), 26 deletions(-) create mode 100644 libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx create mode 100644 libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HoverDetector.tsx 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..9e3259507c6 --- /dev/null +++ b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx @@ -0,0 +1,32 @@ +// (C) 2024 GoodData Corporation +import { ObjRef } from "@gooddata/sdk-model"; +import React, { createContext, useContext, useState, ReactNode } from "react"; + +// Define the shape of the context state +interface HoveredWidgetContextState { + hoveredWidget: ObjRef | null; + setHoveredWidget: (widgetRef: ObjRef | null) => void; +} + +// Create the context with a default value +const HoveredWidgetContext = createContext(undefined); + +// Create the provider component +export const HoveredWidgetProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const [hoveredWidget, setHoveredWidget] = useState(null); + + 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/flexibleLayout/DashboardLayoutWidget.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx index c75ce25aba6..5425259b1aa 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 ? ( +
); 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..84c57f9d02e 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..3c460781d51 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" || status === "default"; + 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..4e6ac7b6271 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 @@ -1,6 +1,6 @@ // (C) 2021-2024 GoodData Corporation import React, { useEffect, useMemo, useState } from "react"; -import { ISettings, IWidget, ScreenSize, IInsight } from "@gooddata/sdk-model"; +import { ISettings, IWidget, ScreenSize, IInsight, areObjRefsEqual } from "@gooddata/sdk-model"; import { fluidLayoutDescriptor, INSIGHT_WIDGET_SIZE_INFO_DEFAULT } from "@gooddata/sdk-ui-ext"; import isEqual from "lodash/fp/isEqual.js"; import isEmpty from "lodash/isEmpty.js"; @@ -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,13 @@ export function HeightResizerHotspot({ section, items, getLayoutDimensions }: He const widgetIdentifiers = useMemo(() => widgets.map((widget) => widget.identifier), [widgets]); const customWidgetsRestrictions = useMemo(() => getCustomWidgetRestrictions(items), [items]); + const { hoveredWidget } = useHoveredWidget(); + + const showDefault = useMemo( + () => hoveredWidget && widgets.some((widget) => areObjRefsEqual(hoveredWidget, widget.ref)), + [hoveredWidget, widgets], + ); + const gridWidth = determineWidthForScreen(screen, itemSize); const [{ isDragging }, dragRef] = useDashboardDrag( @@ -117,7 +125,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 { setHoveredWidget } = useHoveredWidget(); + + return ( +
setHoveredWidget(widgetRef)} + onMouseOut={() => setHoveredWidget(null)} + className="gd-hover-detector" + > + {children} +
+ ); +}; 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..d3b742278b2 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,19 @@ 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" || status === "default"; + 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..34a30a735e0 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 @@ -1,5 +1,5 @@ // (C) 2019-2024 GoodData Corporation -import { IWidget } from "@gooddata/sdk-model"; +import { IWidget, areObjRefsEqual } from "@gooddata/sdk-model"; import React, { useEffect, useMemo, useState } from "react"; import { @@ -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 { hoveredWidget } = useHoveredWidget(); const [isResizerVisible, setResizerVisibility] = useState(false); const onMouseEnter = () => setResizerVisibility(true); @@ -94,7 +96,11 @@ export function WidthResizerHotspot({ const showHotspot = !isDragging || isWidthResizing || isResizerVisible; const showResizer = isResizerVisible || isThisResizing; - const status = isDragging ? "muted" : "active"; + const status = isDragging + ? "muted" + : hoveredWidget && areObjRefsEqual(hoveredWidget, widget.ref) + ? "default" + : "active"; if (!showHotspot) { return null; @@ -102,6 +108,11 @@ export function WidthResizerHotspot({ return (
+ {status === "default" ? ( +
+ {} +
+ ) : null}
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/styles/scss/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index 9eb90973f7b..a1d843db274 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; } @@ -193,10 +200,20 @@ ); } +.gd-grid-layout-resizer-drag-preview, .gd-grid-layout { - .dash-width-resizer-container { - right: -20px; - width: 20px; + .gd-fluidlayout-width-resizer { + padding: 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 { @@ -205,12 +222,61 @@ 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 { + right: -20px; + width: 20px; } .dash-height-resizer-hotspot { position: unset; display: flex; } + .gd-hover-detector { + width: 100%; + height: 100%; + } } .sdk-edit-mode-on .gd-grid-layout { From 34e2d09081f5b2d2abb861a5d2a731387d4ad3ee Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Mon, 16 Dec 2024 13:17:18 +0100 Subject: [PATCH 13/54] feat: resizer restyling JIRA: LX-599 risk: low --- .../dragAndDrop/HoveredWidgetContext.tsx | 32 +++++++++++++++--- .../dragAndDrop/Resize/HeightResizer.tsx | 2 +- .../Resize/HeightResizerHotspot.tsx | 9 ++--- .../dragAndDrop/Resize/HoverDetector.tsx | 33 +++++++++++++++---- .../dragAndDrop/Resize/WidthResizer.tsx | 20 ++++++----- .../Resize/WidthResizerHotspot.tsx | 10 ++---- .../styles/scss/dragAndDrop.scss | 4 +++ .../styles/scss/resizing.scss | 25 ++++++++++++-- 8 files changed, 97 insertions(+), 38 deletions(-) diff --git a/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx index 9e3259507c6..c9457b8fd70 100644 --- a/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/dragAndDrop/HoveredWidgetContext.tsx @@ -1,11 +1,13 @@ // (C) 2024 GoodData Corporation -import { ObjRef } from "@gooddata/sdk-model"; +import { ObjRef, areObjRefsEqual } from "@gooddata/sdk-model"; import React, { createContext, useContext, useState, ReactNode } from "react"; // Define the shape of the context state interface HoveredWidgetContextState { - hoveredWidget: ObjRef | null; - setHoveredWidget: (widgetRef: ObjRef | null) => void; + hoveredWidgets: ObjRef[] | null; + addHoveredWidget: (widgetRef: ObjRef | null) => void; + removeHoveredWidget: (widgetRef: ObjRef | null) => void; + isHovered: (widgetRef: ObjRef) => boolean; } // Create the context with a default value @@ -13,10 +15,30 @@ const HoveredWidgetContext = createContext = ({ children }) => { - const [hoveredWidget, setHoveredWidget] = useState(null); + 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} ); 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 3c460781d51..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 @@ -9,7 +9,7 @@ export const HeightResizer: React.FC = (props) => { const handlerClassName = cx("width-resizer-drag-handler", status); const lineClassName = cx("height-resizer-line", status); - const showDragHandler = status === "active" || status === "default"; + const showDragHandler = status === "active"; return (
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 4e6ac7b6271..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 @@ -1,6 +1,6 @@ // (C) 2021-2024 GoodData Corporation import React, { useEffect, useMemo, useState } from "react"; -import { ISettings, IWidget, ScreenSize, IInsight, areObjRefsEqual } from "@gooddata/sdk-model"; +import { ISettings, IWidget, ScreenSize, IInsight } from "@gooddata/sdk-model"; import { fluidLayoutDescriptor, INSIGHT_WIDGET_SIZE_INFO_DEFAULT } from "@gooddata/sdk-ui-ext"; import isEqual from "lodash/fp/isEqual.js"; import isEmpty from "lodash/isEmpty.js"; @@ -55,12 +55,9 @@ export function HeightResizerHotspot({ section, items, getLayoutDimensions }: He const widgetIdentifiers = useMemo(() => widgets.map((widget) => widget.identifier), [widgets]); const customWidgetsRestrictions = useMemo(() => getCustomWidgetRestrictions(items), [items]); - const { hoveredWidget } = useHoveredWidget(); + const { isHovered } = useHoveredWidget(); - const showDefault = useMemo( - () => hoveredWidget && widgets.some((widget) => areObjRefsEqual(hoveredWidget, widget.ref)), - [hoveredWidget, widgets], - ); + const showDefault = useMemo(() => widgets.some((widget) => isHovered(widget.ref)), [isHovered, widgets]); const gridWidth = determineWidthForScreen(screen, itemSize); diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HoverDetector.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HoverDetector.tsx index df082264f2e..7d4c4bc0363 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HoverDetector.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/Resize/HoverDetector.tsx @@ -1,5 +1,5 @@ // (C) 2019-2024 GoodData Corporation -import React from "react"; +import React, { useEffect, useRef } from "react"; import { ObjRef } from "@gooddata/sdk-model"; import { useHoveredWidget } from "../../../dragAndDrop/HoveredWidgetContext.js"; @@ -9,14 +9,33 @@ interface HoverDetectorProps { } export const HoverDetector: React.FC = ({ widgetRef, children }) => { - const { setHoveredWidget } = useHoveredWidget(); + 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 ( -
setHoveredWidget(widgetRef)} - onMouseOut={() => setHoveredWidget(null)} - className="gd-hover-detector" - > +
{children}
); 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 d3b742278b2..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 @@ -8,17 +8,19 @@ export function WidthResizer({ status }: ResizerProps) { const lineClassName = cx("width-resizer-line", status); const handlerClassName = cx("width-resizer-drag-handler", status); - const showDragHandler = status === "active" || status === "default"; + const showDragHandler = status === "active"; return ( -
-
- {showDragHandler ? ( - <> -
-
- - ) : null} +
+
+
+ {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 34a30a735e0..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 @@ -1,5 +1,5 @@ // (C) 2019-2024 GoodData Corporation -import { IWidget, areObjRefsEqual } from "@gooddata/sdk-model"; +import { IWidget } from "@gooddata/sdk-model"; import React, { useEffect, useMemo, useState } from "react"; import { @@ -38,7 +38,7 @@ export function WidthResizerHotspot({ const widget = useMemo(() => item.widget() as IWidget, [item]); const widgetIdentifier = widget.identifier; const { isWidthResizing, isActive } = useResizeWidthItemStatus(widgetIdentifier); - const { hoveredWidget } = useHoveredWidget(); + const { isHovered } = useHoveredWidget(); const [isResizerVisible, setResizerVisibility] = useState(false); const onMouseEnter = () => setResizerVisibility(true); @@ -96,11 +96,7 @@ export function WidthResizerHotspot({ const showHotspot = !isDragging || isWidthResizing || isResizerVisible; const showResizer = isResizerVisible || isThisResizing; - const status = isDragging - ? "muted" - : hoveredWidget && areObjRefsEqual(hoveredWidget, widget.ref) - ? "default" - : "active"; + const status = isDragging ? "muted" : isHovered(widget.ref) ? "default" : "active"; if (!showHotspot) { return null; 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/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index a1d843db274..bc5393a412e 100644 --- a/libs/sdk-ui-dashboard/styles/scss/resizing.scss +++ b/libs/sdk-ui-dashboard/styles/scss/resizing.scss @@ -200,10 +200,18 @@ ); } +.gd-grid-layout-resizer-drag-preview { + padding: 0 0 0 30px; +} + .gd-grid-layout-resizer-drag-preview, .gd-grid-layout { + .gd-fluidlayout-width-resizer__container { + padding: 10px 0; + border-radius: 4px; + } .gd-fluidlayout-width-resizer { - padding: 0; + padding: 4px 0; display: flex; flex-direction: column; border-radius: 4px; @@ -265,8 +273,14 @@ .gd-grid-layout { .dash-width-resizer-container { - right: -20px; - width: 20px; + position: relative; + left: -25px; + right: 0; + width: 0; + } + + .gd-fluidlayout-width-resizer__container { + background: variables.$gd-dashboards-content-backgroundColor; } .dash-height-resizer-hotspot { @@ -277,12 +291,17 @@ 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 { From 2c41e064cc4c055d9a3d893bdf02819db770c829 Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Mon, 16 Dec 2024 13:41:52 +0100 Subject: [PATCH 14/54] fix: correct resize logic (not working for Geochart) JIRA: LX-676 risk: low --- libs/sdk-ui-dashboard/src/_staging/layout/sizing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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), }, }; } From 0418c918ccdb20518de9cd26c88c9c41ffe35fe1 Mon Sep 17 00:00:00 2001 From: ivanmjartan Date: Mon, 16 Dec 2024 13:37:34 +0100 Subject: [PATCH 15/54] chore: add post merge notification risk: nonprod --- .../workflows/push-e2e-integrated-tests.yaml | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push-e2e-integrated-tests.yaml b/.github/workflows/push-e2e-integrated-tests.yaml index 55ac0fedfaf..65da7729519 100644 --- a/.github/workflows/push-e2e-integrated-tests.yaml +++ b/.github/workflows/push-e2e-integrated-tests.yaml @@ -6,11 +6,45 @@ on: - release jobs: + pull-request-info: + runs-on: + group: infra1-runners-arc + labels: runners-small + 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', ':'))) }} + 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', ':'))) }} 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 }} From b72520a50efb6fd0a98d47ee9475d6123b2c5a85 Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 16 Dec 2024 13:10:57 +0000 Subject: [PATCH 16/54] chore: bump versions to 10.18.0-alpha.4 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index fd47f0c3d84..b2dddeb9891 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index d2d03cf37c3..a8d4060eac8 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index c894d9e057b..97421a514f1 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index adf918fba47..bc2455c5c5c 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 2d864449efd..19a8df18d94 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 3e4618b0ebf..98a02413d4f 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index b9e8cb77a7f..5b9afff6728 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index cfeb7958b79..c4432ecdb10 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 205d065d72a..199589f06a7 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index bbc575e7767..9fef798c64e 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 3031d87c755..b4a016dbed4 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index c5056c35abb..ed2f6d14a7c 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 7228331c6b1..ddd5e54a600 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 863cd7d3d31..02a93b50f35 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 10b6f9cfaa3..1f472b5b5b3 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 95bd095f9e2..af960fc2059 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 7aec533af96..b1fb5062241 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 57c5b2b05d3..1499457af05 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index fc87222e3a9..1563c08dfe3 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index e88dbb0f2f5..5f94699bae5 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index d5a49ac41c0..5c14944c387 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 0679c9b886d..42858d7a503 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 0c8c97a4d26..e4313dc8a28 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 759d2bea2e0..4e95ec2e958 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 7eb0732f77c..b3fd0133931 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 89465c6ef92..fe9558738f9 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 6b278b2802b..a3a6909461a 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 48caf045365..d5405a9f20d 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 197700c89bd..c5bba2c58b8 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index a45b320dd6e..a278b5944c5 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 29d3f629093..ef62713b9bc 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 70892a26591..69c4417ea60 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 1e4ecb12069..067eefb6942 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 48bbd396b64..0085fd87a2d 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 4375ee0b525..53def952cc0 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 9d94fc75e5e..0d036cc13f1 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 5630ee67c52..3a4f547bb0b 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7077acbedb7..ec1163b631c 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 66c8f7bb114..aa94c1f1164 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 46a397bbd7d..8c39bdfdcf5 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index e361fba377a..da248296c3f 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index a9793f18a04..cff1e9b9e30 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 52e52ea62f2..e6bf549fa23 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 8e92154eb14..fdbc84ff9da 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.3", + "version": "10.18.0-alpha.4", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From e52a44de2081131ca45daeda3948c3eb48566c86 Mon Sep 17 00:00:00 2001 From: kandl Date: Mon, 16 Dec 2024 13:04:48 +0100 Subject: [PATCH 17/54] fix: notification panel All interval for refreshing notifications. Add support for in-platform notifications in webhook and smtp channels. Filter out in-platform notifications in scheduled exports. risk: low JIRA: F1-976 --- .../NotificationChannelsConvertor.ts | 3 ++ .../NotificationChannelsConvertor.test.ts | 4 +++ .../NotificationChannelsConvertor.ts | 3 ++ libs/sdk-model/api/sdk-model.api.md | 2 ++ .../src/notificationChannels/index.ts | 10 ++++++ .../api/sdk-ui-dashboard.api.md | 6 ++++ .../useDashboardScheduledEmailsData.ts | 10 +++--- .../sdk-ui-dashboard/src/model/store/index.ts | 2 ++ .../notificationChannelsSelectors.ts | 23 +++++++++++++ .../localization/bundles/en-US.json | 4 +-- libs/sdk-ui-ext/api/sdk-ui-ext.api.md | 5 +-- .../useFetchOrganization.ts | 2 +- .../NotificationsPanel/NotificationsPanel.tsx | 33 +++++++++++++++++-- .../data/NotificationsContext.tsx | 4 ++- .../data/useFetchNotifications.ts | 31 +++++++++++++++-- .../data/useNotifications.tsx | 6 +++- 16 files changed, 129 insertions(+), 19 deletions(-) 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 8b356fbb237..7f29fde2e42 100644 --- a/libs/sdk-model/api/sdk-model.api.md +++ b/libs/sdk-model/api/sdk-model.api.md @@ -3561,6 +3561,7 @@ export interface ISmtpNotificationChannelMetadataObject extends INotificationCha destinationConfig?: ISmtpDestinationConfiguration; // (undocumented) destinationType: "smtp"; + sendInPlatformNotifications: boolean; // (undocumented) type: "notificationChannel"; } @@ -4183,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/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-ui-dashboard/api/sdk-ui-dashboard.api.md b/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md index 7de4447b28b..780be331a4e 100644 --- a/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md +++ b/libs/sdk-ui-dashboard/api/sdk-ui-dashboard.api.md @@ -8062,6 +8062,12 @@ export const selectNotificationChannels: DashboardSelector; +// @alpha +export const selectNotificationChannelsCountForScheduledExports: DashboardSelector; + +// @alpha +export const selectNotificationChannelsForScheduledExports: DashboardSelector; + // @public export const selectObjectAvailabilityConfig: DashboardSelector; 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..7a67d48dafb 100644 --- a/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts +++ b/libs/sdk-ui-dashboard/src/model/react/useDasboardScheduledEmails/useDashboardScheduledEmailsData.ts @@ -22,10 +22,10 @@ import { selectIsScheduleEmailDialogContext, selectIsScheduleEmailManagementDialogOpen, selectInsightByWidgetRef, - selectNotificationChannelsCount, - selectNotificationChannels, selectAutomationsIsInitialized, selectFilterableWidgetByRef, + selectNotificationChannelsForScheduledExports, + selectNotificationChannelsCountForScheduledExports, } from "../../store/index.js"; import { useDashboardSelector } from "../DashboardStoreProvider.js"; @@ -72,8 +72,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; /** diff --git a/libs/sdk-ui-dashboard/src/model/store/index.ts b/libs/sdk-ui-dashboard/src/model/store/index.ts index 5771973bd18..6df7d6dd345 100644 --- a/libs/sdk-ui-dashboard/src/model/store/index.ts +++ b/libs/sdk-ui-dashboard/src/model/store/index.ts @@ -410,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"; 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/presentation/localization/bundles/en-US.json b/libs/sdk-ui-dashboard/src/presentation/localization/bundles/en-US.json index 681c0d5f355..bef95881445 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 }, @@ -3117,7 +3117,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-ext/api/sdk-ui-ext.api.md b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md index 590e9a68a3c..5ea89eccbd2 100644 --- a/libs/sdk-ui-ext/api/sdk-ui-ext.api.md +++ b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md @@ -533,13 +533,10 @@ export interface INotificationsPanelHeaderComponentProps { // @alpha (undocumented) export interface INotificationsPanelProps extends INotificationsPanelCustomComponentsProps { - // (undocumented) backend?: IAnalyticalBackend; - // (undocumented) locale?: ILocale; - // (undocumented) onNotificationClick: (notification: INotification) => void; - // (undocumented) + refreshInterval?: number; workspace?: string; } diff --git a/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts index 4ea8afcaaed..da339dc66c6 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts +++ b/libs/sdk-ui-ext/src/notificationsPanel/@staging/OrganizationContext/useFetchOrganization.ts @@ -33,6 +33,6 @@ export function useFetchOrganization({ backend, organizationId }: IUseFetchOrgan : effectiveBackend.organizations().getCurrentOrganization(); }, }, - [effectiveBackend], + [effectiveBackend, organizationId], ); } diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx index aa9d1f9c5f6..d4aa57e1c76 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx @@ -75,21 +75,48 @@ export interface INotificationsPanelCustomComponentsProps { * @alpha */ export interface INotificationsPanelProps extends INotificationsPanelCustomComponentsProps { - workspace?: string; + /** + * 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; + + /** + * 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 } = props; + const { locale, refreshInterval = TEN_MINUTES, backend, workspace } = props; return ( - + diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx index b7a1dafd4ff..46fb8dd4a07 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/NotificationsContext.tsx @@ -21,14 +21,16 @@ 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 }); + const notifications = useNotifications({ backend, workspace, refreshInterval }); return {children}; }; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts index 784fbfcee78..44e39b4fc9f 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts @@ -2,7 +2,7 @@ import { GoodDataSdkError, useCancelablePromise, useWorkspace } from "@gooddata/sdk-ui"; import { useOrganization } from "../@staging/OrganizationContext/OrganizationContext.js"; import { INotification } from "@gooddata/sdk-model"; -import { useCallback, useState } from "react"; +import { useCallback, useEffect, useState } from "react"; import { INotificationsQueryResult } from "@gooddata/sdk-backend-spi"; /** @@ -20,18 +20,43 @@ export interface IUseFetchNotificationsProps { * If not provided, all notifications will be fetched. */ readStatus?: "unread" | "read"; + + /** + * Refresh interval in milliseconds. + */ + refreshInterval: number; } /** * @alpha */ -export function useFetchNotifications({ workspace, readStatus }: IUseFetchNotificationsProps) { +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( { @@ -61,7 +86,7 @@ export function useFetchNotifications({ workspace, readStatus }: IUseFetchNotifi setTotalNotificationsCount(result.totalCount); }, }, - [effectiveWorkspace, organizationService, page], + [effectiveWorkspace, organizationService, page, invalidationId], ); const loadNextPage = useCallback(() => { diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx index 00ce7e93efc..76ab6d2b93a 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx @@ -6,18 +6,20 @@ 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 }: IUseNotificationsProps) { +export function useNotifications({ workspace, refreshInterval }: IUseNotificationsProps) { const effectiveWorkspace = useWorkspaceStrict(workspace, "useNotifications"); const { notifications, @@ -27,6 +29,7 @@ export function useNotifications({ workspace }: IUseNotificationsProps) { status: notificationsStatus, } = useFetchNotifications({ workspace: effectiveWorkspace, + refreshInterval, }); const { error: unreadNotificationsError, @@ -38,6 +41,7 @@ export function useNotifications({ workspace }: IUseNotificationsProps) { } = useFetchNotifications({ workspace: effectiveWorkspace, readStatus: "unread", + refreshInterval, }); const { result: organizationService, status: organizationStatus } = useOrganization(); From 7f0c8eb5c96271158ad89ddde605ae57671be785 Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 16 Dec 2024 13:29:29 +0000 Subject: [PATCH 18/54] chore: bump versions to 10.18.0-alpha.5 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index b2dddeb9891..1f7ace1b87c 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index a8d4060eac8..ec4953b9952 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 97421a514f1..a75bac3cdfc 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index bc2455c5c5c..80f04a2101d 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 19a8df18d94..5acd31c9572 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 98a02413d4f..76173f69c8d 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 5b9afff6728..d7a0ba6b902 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index c4432ecdb10..e6a247efb56 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 199589f06a7..f9813cbb26e 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 9fef798c64e..b11a512974e 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index b4a016dbed4..a382a9842f9 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index ed2f6d14a7c..50d1f9833e6 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index ddd5e54a600..0c1e80dfdad 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 02a93b50f35..a4b034dcf2a 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 1f472b5b5b3..69e4cdbfd8c 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index af960fc2059..377e5ff5128 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index b1fb5062241..eeb212b1ef7 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 1499457af05..47c77505f50 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 1563c08dfe3..632e9105c77 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 5f94699bae5..d7e9709e9b3 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 5c14944c387..4bf79d6c196 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 42858d7a503..c10d6359a7e 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index e4313dc8a28..eccfc105fd2 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 4e95ec2e958..cfa2502d173 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index b3fd0133931..146d933769c 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index fe9558738f9..5c3fa953823 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index a3a6909461a..930af419335 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index d5405a9f20d..25c7ac64dcb 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index c5bba2c58b8..bb04a6cc40b 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index a278b5944c5..c99be753a6a 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index ef62713b9bc..ee2dd4492fc 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 69c4417ea60..8e72f03a79b 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 067eefb6942..f81716bf9e5 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 0085fd87a2d..3ba67ea7f70 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 53def952cc0..afd3ddcb58f 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 0d036cc13f1..8abad30d5d7 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 3a4f547bb0b..c1b8d06af22 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index ec1163b631c..bd48a95ecdd 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index aa94c1f1164..e35ac1cba04 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 8c39bdfdcf5..7574da98205 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index da248296c3f..e88385a71c0 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index cff1e9b9e30..c150336c3a8 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index e6bf549fa23..e2e2b271c49 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index fdbc84ff9da..ebd5d6d860d 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.4", + "version": "10.18.0-alpha.5", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 5f75fb1d7e16fffe0b1280e1a0ddc2c7843a5c00 Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Mon, 16 Dec 2024 14:39:57 +0100 Subject: [PATCH 19/54] fix: empty nested container component using theme JIRA: LX-683 LX-689 risk: low --- .../EmptyDashboardNestedLayout.ts | 5 ++--- .../ViewModeEmptyNestedLayout.tsx | 19 +++++++++++++++++++ .../styles/scss/dashboard.scss | 4 ++++ 3 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 libs/sdk-ui-dashboard/src/presentation/flexibleLayout/ViewModeEmptyNestedLayout.tsx 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/styles/scss/dashboard.scss b/libs/sdk-ui-dashboard/styles/scss/dashboard.scss index b82f229c51b..03122103dc0 100644 --- a/libs/sdk-ui-dashboard/styles/scss/dashboard.scss +++ b/libs/sdk-ui-dashboard/styles/scss/dashboard.scss @@ -750,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; } From 3c600112ee405a334244ff97d79e1e319cb5f02c Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 16 Dec 2024 14:01:28 +0000 Subject: [PATCH 20/54] chore: bump versions to 10.18.0-alpha.6 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 1f7ace1b87c..04b38e30a47 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index ec4953b9952..eeafbeae830 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index a75bac3cdfc..f4dd7d34419 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 80f04a2101d..1cb029a5963 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 5acd31c9572..d4066fa4ce7 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 76173f69c8d..6c33d630098 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index d7a0ba6b902..53c65168458 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index e6a247efb56..8026ac5dd7c 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index f9813cbb26e..567e5c1b845 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index b11a512974e..991e3da9dee 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index a382a9842f9..da6e50fdbc4 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 50d1f9833e6..b1adaee5c33 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 0c1e80dfdad..8b60dba82eb 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index a4b034dcf2a..0986cc2e904 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 69e4cdbfd8c..963f60a1109 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 377e5ff5128..07a5c38f098 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index eeb212b1ef7..1f56133f6d0 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 47c77505f50..da7d30036f5 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 632e9105c77..36ff70cd7e7 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index d7e9709e9b3..4bbad5cd0f7 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 4bf79d6c196..bb798b45f88 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index c10d6359a7e..c247093fdaa 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index eccfc105fd2..c651964fab9 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index cfa2502d173..ea1565cbd0d 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 146d933769c..834c879ee93 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 5c3fa953823..de7bee7749e 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 930af419335..c5ac047f5f6 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 25c7ac64dcb..792b36e72a5 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index bb04a6cc40b..8b60c70d27b 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index c99be753a6a..97cd530f50c 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index ee2dd4492fc..d2d0a97b34e 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 8e72f03a79b..68351e7ad7c 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index f81716bf9e5..a37a387dd3e 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 3ba67ea7f70..3dab8dec25e 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index afd3ddcb58f..6da15729c89 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 8abad30d5d7..73666552d14 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index c1b8d06af22..fc04ccb1011 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index bd48a95ecdd..b753133157b 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index e35ac1cba04..f95d9239bd7 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 7574da98205..78c13c89c7c 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index e88385a71c0..7391cc9376c 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index c150336c3a8..91a6b8d79cc 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index e2e2b271c49..09ed3c5a561 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index ebd5d6d860d..ec84fe7160a 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.5", + "version": "10.18.0-alpha.6", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 0da24ddc146c85714410f32ddc121dea9b89b201 Mon Sep 17 00:00:00 2001 From: ivanmjartan Date: Mon, 16 Dec 2024 15:12:03 +0100 Subject: [PATCH 21/54] chore: skip immediately post merge on not related commits risk: nonprod --- .github/workflows/push-e2e-integrated-tests.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push-e2e-integrated-tests.yaml b/.github/workflows/push-e2e-integrated-tests.yaml index 65da7729519..ae6b056ec79 100644 --- a/.github/workflows/push-e2e-integrated-tests.yaml +++ b/.github/workflows/push-e2e-integrated-tests.yaml @@ -7,9 +7,8 @@ on: jobs: pull-request-info: - runs-on: - group: infra1-runners-arc - labels: runners-small + 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: @@ -27,7 +26,7 @@ jobs: result-encoding: string e2e-integrated: - 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', ':'))) }} + needs: [pull-request-info] permissions: id-token: write contents: read From 30cd236ad61d36845d974c5e1acc004563ac42a9 Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Mon, 16 Dec 2024 16:51:26 +0100 Subject: [PATCH 22/54] fix: prevent page breaks to split widget JIRA: LX-696 risk: low --- libs/sdk-ui-dashboard/styles/scss/export.scss | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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; } From 95896d354d09cd626439714cbfcadee71396fc75 Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 16 Dec 2024 16:21:15 +0000 Subject: [PATCH 23/54] chore: bump versions to 10.18.0-alpha.7 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 04b38e30a47..ca4dc075af4 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index eeafbeae830..f0f48a3ee6d 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index f4dd7d34419..97248e2ddcc 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 1cb029a5963..3a8dbec7948 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index d4066fa4ce7..7595af180a8 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 6c33d630098..d6f8537ab7a 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 53c65168458..6e49492474c 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 8026ac5dd7c..87eb9ad109d 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 567e5c1b845..059e1f27930 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 991e3da9dee..497a4c441fb 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index da6e50fdbc4..e00bab6f0bb 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index b1adaee5c33..be332bfd296 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 8b60dba82eb..26850f49954 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 0986cc2e904..be903606122 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 963f60a1109..550b65c7228 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 07a5c38f098..cfce278f5f1 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 1f56133f6d0..276b09d8882 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index da7d30036f5..249dc398098 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 36ff70cd7e7..e120a71046e 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 4bbad5cd0f7..08dc365feeb 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index bb798b45f88..b8d3e5d5e7a 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index c247093fdaa..fd97f497f0b 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index c651964fab9..08d33cce28e 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index ea1565cbd0d..57a09e97499 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 834c879ee93..1f284bf95fe 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index de7bee7749e..5911049960e 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index c5ac047f5f6..ffcb3fe926f 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 792b36e72a5..fccfb36a0d0 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 8b60c70d27b..c521dd7dbfd 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 97cd530f50c..7d017d56088 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index d2d0a97b34e..7aedb17d1bf 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 68351e7ad7c..d65339b49e4 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index a37a387dd3e..a1b24aedcb1 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 3dab8dec25e..606250ce6af 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 6da15729c89..ed32fbc79da 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 73666552d14..c19d9e1c56d 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index fc04ccb1011..c995b071230 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index b753133157b..827d066278f 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index f95d9239bd7..a07edbb86c4 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 78c13c89c7c..1ce47df6a1e 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 7391cc9376c..dcd72b87e65 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 91a6b8d79cc..22f4be4b3bb 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 09ed3c5a561..347ce320bd7 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index ec84fe7160a..c9370be9462 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.6", + "version": "10.18.0-alpha.7", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 4e1af083c6cfa0b576c89cd66892e0e436912af9 Mon Sep 17 00:00:00 2001 From: kandl Date: Mon, 16 Dec 2024 17:55:49 +0100 Subject: [PATCH 24/54] fix: notification channels Use proper selector for destinations count in alerting. risk: low JIRA: F1-976 --- .../ViewModeDashboardVisualizationSwitcher.tsx | 2 -- .../widget/InsightWidget/DefaultDashboardInsightWidget.tsx | 2 -- .../widget/widget/InsightWidget/useAlertingAndScheduling.ts | 4 ++-- 3 files changed, 2 insertions(+), 6 deletions(-) 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 82d99c6537d..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 @@ -56,7 +56,6 @@ const DefaultDashboardInsightWidgetCore: React.FC< const { isScheduledEmailingVisible, isScheduledManagementEmailingVisible, - numberOfAvailableDestinations, onScheduleEmailingOpen, onScheduleEmailingManagementOpen, } = useDashboardScheduledEmails(); @@ -88,7 +87,6 @@ const DefaultDashboardInsightWidgetCore: React.FC< } = useAlertingAndScheduling({ widget, insight, - numberOfAvailableDestinations, }); /// 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. */ From f08ea91e451563cab655f304d4616ec05eb9a621 Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 16 Dec 2024 20:08:21 +0000 Subject: [PATCH 25/54] chore: bump versions to 10.18.0-alpha.8 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index ca4dc075af4..5127aee0bb4 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index f0f48a3ee6d..2fddbd7932f 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 97248e2ddcc..f7705ef3b18 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 3a8dbec7948..eedbb196899 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 7595af180a8..fc3d04d3d26 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index d6f8537ab7a..0e9d2346bd2 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 6e49492474c..dec6a1c6f36 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 87eb9ad109d..781ac3338a8 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 059e1f27930..c3defa740ef 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 497a4c441fb..5a91ac8ce13 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index e00bab6f0bb..4b0e8c9ab77 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index be332bfd296..591429b245c 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 26850f49954..ec891d028f0 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index be903606122..f8a70c400db 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 550b65c7228..a0c606a096b 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index cfce278f5f1..89665dc5cb2 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 276b09d8882..a2f6f547acb 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 249dc398098..6436845df87 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index e120a71046e..c963179d529 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 08dc365feeb..87b526745df 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index b8d3e5d5e7a..349f4927772 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index fd97f497f0b..406316357f1 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 08d33cce28e..c40c0836466 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 57a09e97499..9764527966a 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 1f284bf95fe..c7e577ec489 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 5911049960e..b7e297d19fe 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index ffcb3fe926f..6a057aa45a9 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index fccfb36a0d0..8bb4acd308d 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index c521dd7dbfd..81117eae15e 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 7d017d56088..561a43ad120 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 7aedb17d1bf..e3786e03773 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index d65339b49e4..007574dd555 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index a1b24aedcb1..6ab59f7aa7b 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 606250ce6af..68cab2a7b28 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index ed32fbc79da..70c2ab930ab 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index c19d9e1c56d..a8b840c69a5 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index c995b071230..224eecbbe2e 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 827d066278f..5cd0c0be63a 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index a07edbb86c4..c152a23bc0f 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 1ce47df6a1e..6b075bf4c4e 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index dcd72b87e65..39c5f9c4784 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 22f4be4b3bb..0aea467cdaf 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 347ce320bd7..19ede4395a1 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index c9370be9462..cceeff74f20 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.7", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 215fada183de30ed56a7e5089ba7a4352bf62fe5 Mon Sep 17 00:00:00 2001 From: huyenthanh09 Date: Tue, 17 Dec 2024 13:46:01 +0700 Subject: [PATCH 26/54] ci: adding a new wf for boiler app test JIRA: QA-23787 risk: nonprod --- .../workflows/checklist-run-boiler-app.yaml | 139 ++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 .github/workflows/checklist-run-boiler-app.yaml diff --git a/.github/workflows/checklist-run-boiler-app.yaml b/.github/workflows/checklist-run-boiler-app.yaml new file mode 100644 index 00000000000..4892d43fbcb --- /dev/null +++ b/.github/workflows/checklist-run-boiler-app.yaml @@ -0,0 +1,139 @@ +# (C) 2024 GoodData Corporation + +name: Test ~ run boiler app +on: + workflow_dispatch: + inputs: + GIT_REVISION: + description: 'GIT REVISION' + default: master + required: true + type: string + TEST_BACKEND: + default: 'https://checklist.staging.stg11.panther.intgdc.com' + required: true + type: string + TIGER_DATASOURCES_NAME: + description: 'Tiger DS name' + default: 'vertica_staging-goodsales' + required: true + type: string + SDK_VERSION: + required: true + type: string + default: 'latest' + SDK_LANG: + description: 'Programming Language to be used' + type: choice + default: 'js' + options: + - js + - ts + FILTER: + type: string + required: true + description: 'Test files to be filtered' + default: 'boilerapp.spec.ts' + workflow_call: + inputs: + GIT_REVISION: + description: 'GIT REVISION' + default: master + required: true + type: string + TEST_BACKEND: + default: 'https://checklist.staging.stg11.panther.intgdc.com' + required: true + type: string + TIGER_DATASOURCES_NAME: + description: 'Tiger DS name' + default: 'vertica_staging-goodsales' + required: true + type: string + SDK_VERSION: + required: true + type: string + default: 'latest' + SDK_LANG: + description: 'Programming Language to be used' + type: choice + default: 'js' + options: + - js + - ts + FILTER: + type: string + required: true + description: 'Test files to be filtered' + default: 'boilerapp.spec.ts' + +jobs: + warm-up-cache: + runs-on: + group: infra1-runners-arc + labels: runners-cxa-xlarge + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.GIT_REVISION }} + fetch-depth: 2 + - name: Git config user + uses: snow-actions/git-config-user@v1.0.0 + with: + name: git-action + email: git-action@gooddata.com + - name: Warmup rush + env: + NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: ./.github/actions/rush/warm-up-rush + e2e: + needs: [ warm-up-cache ] + runs-on: + group: infra1-runners-arc + labels: runners-rxa-xlarge + permissions: + contents: read + id-token: write + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.GIT_REVISION }} + fetch-depth: 2 + - name: Git config user + uses: snow-actions/git-config-user@v1.0.0 + with: + name: git-action + email: git-action@gooddata.com + - name: Get vault secrets + uses: hashicorp/vault-action@v3 + id: secrets + with: + url: https://vault.ord1.infra.intgdc.com + method: jwt + path: jwt/github + role: front-end + secrets: |- + secret/data/v3/dev/panther/qa-org-bootstrap-token token | TIGER_API_TOKEN ; + - name: Run e2e tests + run: | + export HOST=${{ inputs.TEST_BACKEND }} + export TIGER_DATASOURCES_NAME=${{ inputs.TIGER_DATASOURCES_NAME }} + export SDK_LANG=${{ inputs.SDK_LANG }} + export FILTER=${{ inputs.FILTER }} + if [[ -z ${{ inputs.SDK_VERSION }} || ${{ inputs.SDK_VERSION }} == "latest" ]]; then + export SDK_VERSION=$(jq < libs/sdk-backend-spi/package.json -r '.["version"]') + else + export SDK_VERSION=${{ inputs.SDK_VERSION }} + fi + echo "The boiler app will be run with sdk version $SDK_VERSION" + + ./common/scripts/ci/run_boiler_app_integration_tests_with_live_backend.sh + - name: Archive the cypress test artifacts + uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: cypress-test-artifacts + path: | + libs/sdk-ui-tests-e2e/cypress/videos/**/*.mp4 + libs/sdk-ui-tests-e2e/cypress/screenshots/**/* + libs/sdk-ui-tests-e2e/cypress/results/**/* From a2dc60308a84d2afc21336fefb7f33570ed204a4 Mon Sep 17 00:00:00 2001 From: git-action Date: Tue, 17 Dec 2024 06:57:09 +0000 Subject: [PATCH 27/54] chore: bumped version of sdk packages to 10.18.0-alpha.8 which is in master risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index e3d1de2db00..5127aee0bb4 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 16cd7e79a08..2fddbd7932f 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 2ef543da0c9..f7705ef3b18 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 46b35f9080b..eedbb196899 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 2b1e08ac5da..fc3d04d3d26 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 2c5d5195551..0e9d2346bd2 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index f0c4f2c10f2..dec6a1c6f36 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 823c711f077..781ac3338a8 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 6afa4448f4d..c3defa740ef 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index bf7f6a7e518..5a91ac8ce13 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 9a5435d7d44..4b0e8c9ab77 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 263091ad7d1..591429b245c 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 9d5b957aee5..ec891d028f0 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index cdb8c39bcab..f8a70c400db 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 34e861fc46a..a0c606a096b 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 2d1f18807f6..89665dc5cb2 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 11d94a80fa0..a2f6f547acb 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index ac5d8bb7700..6436845df87 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index ca2ba958173..c963179d529 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index a6a2a0859d5..87b526745df 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index c56c5754277..349f4927772 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 567e8698b71..406316357f1 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 75e521d4253..c40c0836466 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 06bbf4f5586..9764527966a 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 1970ad33c97..c7e577ec489 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 141e7a2e861..b7e297d19fe 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 55f31713b03..398f1127f67 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 61b1c544776..8bb4acd308d 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index b831ddaf4f0..81117eae15e 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index d7a7cf1faf4..561a43ad120 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index b1e25c60510..e3786e03773 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 315039c1215..007574dd555 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index fc1de43c8f9..6ab59f7aa7b 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 9013910f154..68cab2a7b28 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 207ec67194a..70c2ab930ab 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 823841c3309..a8b840c69a5 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 4a4f682c2de..224eecbbe2e 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7666092ff13..5cd0c0be63a 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 555134e5bca..c152a23bc0f 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 57740d815d5..6b075bf4c4e 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 1f0cab71771..39c5f9c4784 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 3adab33b8f4..0aea467cdaf 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index af6b88dc254..19ede4395a1 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 4b1df2d3f2d..cceeff74f20 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.8", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 3337398162f6c2b311bbdd72ed521f79c9ec9f9d Mon Sep 17 00:00:00 2001 From: Petr Benes Date: Tue, 17 Dec 2024 10:05:43 +0100 Subject: [PATCH 28/54] fix: remove flaky dropdown test (focus/blur input) risk: low --- ...t_Dropdown_-_themed_0_document_0_desktop.png | Bin 71588 -> 0 bytes .../visual-regression/kit/Dropdown/Dropdown.tsx | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 libs/sdk-ui-tests/backstop/reference/storybook_12_UI_Kit_Dropdown_-_themed_0_document_0_desktop.png 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 ef51475fca79a38c63bf22189f83510a43c73dae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 71588 zcmd?RXH-;M*EM)ZCd8~L3K&onL<|H42?kJ9M2QLldQm|#N|0RYH7jVLph!}XC?JwE z>P18(Nhk?L5Rn`t$D-#hpWEO2jqb0<+oOAo{?Ux*xkA;cQ|Iin_gZt!IoG~>;`kxH zc>?n&isDl{d{C33xbZ7b)tp)Q=f(5b82rO=Mf1>pDz0Qr2Su%=)DG^`z8cWYbhX!R z&7S#PdVc@Tb$)8E79Cc$R#~Kfhhtyt=h#z^e9zjc8FVH*JtDEl;Qr;~6XI{o#Wx>* zd~dTr^!ldXYeeero#I^|!kNJ5w^nuklg!PJ{{FjOba3*<(>>{5k8Sc%ySQm`THiu< zq#?1bru6HVul{|eN~Jb9FC`_qqrJ>&X5dBVnd#A|fq}8ZU5v?0aWX!%wTn9Y z7L3vJ|0?(P7~1eqK>CRL#L&rO#~yqsDsmY3sg^y%nsgZ~metYM@9eW?4|3VBT6L-{ zLPL0ZINnp|ufP7v?m2n#q`+?5kXZ}XL~hXvHyi1$`BGXsswK%mzN6pUaR<-ZO`B9D zv-+=xj+K7>TKQy)mXzC=t$NVj(_PiEK1^#pMx5dB)L^Oj)~#Pl7067aLadVSFQ!Ht zJ#&{VSt6p=#fWEUX(+U&_5CdL(a*Y?fD0UMy0K7f$BvUrMUQJ=yck|5bKt-MhraAl z^B@1*?W~IN+mAn+Kk)Q0Gxg%LNBncff4y*-T)0~1n9^iTX(jH!&~tiNY}+_3PId!s`2yIgzDGGg%EevP^p)kIA~mPWi@h zFEMfPWT!qOiPP^6I%Z~Xlw3tFJ@0I-3boy1>Z%&O_+rIT$?Tu@!4DqHckgp;tPl-$ zdnK7O_QA^a+_`fuzw`N@(&?HulYFxEA;GMn2>Rgot{?Ym-AJ73-w z(ma0LOC-vvui?w*&nF7J1UITJUcA_Ux819Wp^gncg_Qw*?6q^&cApZ@S~)p=W`={0 zh+&%TKEG{-motn{pMI{Xr8OL(G_5v!p^$yuuLrAkt;wH>Gt88-`*Dy=lp;S#Kau?W z{EkA=VEgWwJg$YCMMMrdJ3EsvxwSwr+OFl(CCt1GxAAwX-a#Dl+nLjBf0=mj`Z(sBz7je6Mvu%;;rslOy8HHBJ02+aT4`pyRM9zzTnyDRXJQK_EiLVZ6W9M3 z$#CfUHD|fvWcMz^Y?tJQX)HZ~y;t9gM0w7z!d`QW>E;7?P z;gtTA8+%oKS~SFw*IMLvA+_$p&gYfsSK3yj@(T*~oZ2QPW^V7vv`Xfgcz2;_+2X}7 zD=W2c-ntd77jHxs1)i!7&N(wW!wObpjhPg%)bHNEuXW~3fJyebIqTFmZrn%`0)D*7 zXzS{RXJzdj?y1u=%&9uKgp zKT3~|i5YHFnmLUr!su`QD1Ej6ET5p9w)^CW4!(yq;FoLm;qSS_^Tsh9x@2?59~QM; zNY)SBc9dRtKAK;f{q1E>LUL!(M67DwB{8w+hUo*h=G$!*-g7yu!TsjVn=YeFr)0D8^-QNmcl{L0=OTrF zCA5E9ZBzMtm#H=)npqw5>D2vu_tt!5L@!B$}4$+S?}~0V0rg8iw@0u*o^8 zuKuvWebi7*bN~M9LheH+^FMt;lsaCzckqGYSQA&Qac+a%C(p(lcY2(<^wp`~1sL=Q zMfVA_hAd}Aw_)~`tDZe_{CLV_=F*%;j~<2OvWDX`et%kR*n4Gs;DW+b|3|OpnZdSF zhQet51~q@FOZ4NxiV|w`7A|Cbc`7c*KWWikpMJ$((LEz)qElS$+bfm(Qr7jm{R-UM z0-c5?8)uBZC2!%jV8rPla0m8I`sGfk*kt{_6=uP|%58d>v3$h}U7O&Kw-<^dJTr_v zvj+wT1#|V;S4I>6waqYNs=P6<|7MI{yx6W?TBfBzI=2@HlF9n^?RFh)?e>4}E_Ipg zNtL!~*c&MCRPy`T;|+&8!(Uj_MY0jay~bx`UZ{J{Og8FhYQ9QK+pVIaQg|`3qcTdX z_U*YFze(E}d&rj00`gcpgaA!=s`S?KVySn(+ zt*x!CwJBCFwywDUqorjzuHoIgon&d2Do(zUv8w%PHu@v~zMOsgBbU+MSVSYk^vf#9 zGC|~PGJ7+Q{{HWMavW!MU_PNGRmCdH6Cx*2!L6B@iU%guI=_DF?I#!oY zKlSe@#D}2%F)klB#9l!`4d(D2) zadSHt`$17<^HrY7BYn_=ewYkaWH)xnK@wyblX zsgR8%>=g&fr{?$AcYMpAoz1?|yj?F@y)>oa_VNQ25gLp`!tP;eKAWOmz1oj(PV(5- zi;3YH!Esm{r`fA08&kQnJoL85beFOGep+TK=^h(7m!U|cS*0yIcWTDxvNFC^R1Dt`o(d_qGdDNi>mh_?T~_w;fJ0Lr zM~!8Q>Zs_ZO=3un2zCHX1 zx$?`bw?4hIHaP~E=v3eDyLa#U?{$9XyY=)d9^Mu0CGvf5^k|0;9V$A%b5Cs$-VwP} z{z@e}I{F*e!o4A3VPTuRE1qCpzYY)YWKH(@)mX+k8K+t^hx$J*>`JM#9{jbD{b-Vw z-daG36rSJN5$M!#^1_AJ3xxJYj*VSa(>!Ff4(v*Lg~T8)zpqxRk3cN9zm zuibm_!2S*HU|3PUB*m)EpILHS*dua*pj>-zW?yyF`x_3p*w{1anwa!P!@T6AWgaU% z=F!BFCsKv3HgTvNJQx`reFW&nD{(v-!AtsV9_7$gt!`&$C$Q_{gF{wzmNL(aFRC0m zWC5_LE)=oHv8VR+XoIT;@+bRxPn>9SFd(O8xHdv@I^vGAjU=u)1K){-w z`gASK3om!FCfxhq&z_j>^NdF(Z5N&yyM1V#@})~rUV`%Bxl^r@F1_h(_AL)(W#o<@ z&BC|1ApYoA{=v!aJ2r}nx_V~pp{BY`l`8zDEv7DaBaAYywmg(`9taZ?6O(f2)IPm+ zMfSiKagPq~__0B09&%+#3sk8jWe103>-5$YWE5Y%eEFrgxT=vgBJ1hI9v7PG97;a~ z>nJ{FBAO&EPbcqD2Kfj!%_6bwVR;>79o;;Dcy60Avxeg{{ zZYF!F_a}rbq{!TOe`EGi&M_J=YskJEPyGDa`r_ChciY!^&kZDM+)`z5mpmwQIEgeA)k(^(Q-JYytEpp)Sp?MG8|D;}(tZ*;X3N$Z?+> zsy49c=&ng*^=@Kcu2spCfB?%;CsDU`>(=c<^sZ8uW&XSz+}UXkJa9!n)6r`6$b9yp zGZy?CC}c*XtIa&a9TkV@NmtsAUpRk$v!tX3srnRLlD>WWMv9OEA=hJAF9h2LyYi6_ zE7x7(XHd`N9HK+VJTYOVOiR`X$~zv@(a{mxyt(Wa-)bpfa2-9pqjZna%*HM2*MImu zW*X$I3g}F#R&DJkfLAYL4N^Pvu5o?&`c)e-I@ILTKmVAO1nePSv|!Ed5W`HzOC8@{ z6LiznlL~YO=-h?l>0z$D>4!)u!J3{-b{@RQbRT8L4!>jHR@2$uZ?B7lrAlqzH?D?kpxXvdJW#I?4kPwM&;Sbv9&Y zb~|PUxecf>9qX+8Q9d0H*u4(dHZ){k(9%6JlljkwQcuaoC~Z~MTPBl9mnyQH zJK2MFb!$5p4G_5G>)Y;n}}Mr z%dq*c#6JPf`8sPoP3A>$f~Cw0X0JuUsQ|^eI1R<|u!afbG$|ApYMLlowRLn}BVHb% z=L`n+ZI+j>yCe^YR1u{W(P=fw$YtsDjYVh#`&OAhtulA0vti$ozF7Mq>P(JX&B?D$ zJ+)OmIdkXE^=hr%Gr$m?cGx_Fj%S-Pc9WJxoUc}F&^b`ZbQzhRja(j zr`Th>Xb$+4wQ4*(JQMkn9xs94EvCkPXJB|p-~n(6RB+W5b{~4on#`T4Yt5fAmoUuG zM#4CvuC8Ng`6g#-;3#628CK7*m$X%_)O4p_?l)W*%4Smnk3a|Lr&HPcF zti1nll=DLjr{*_dLLm5(km2dHF%orBC-BGwrf2K_NPt|lbq8*>8#GS%rdTthk$Jx~ zGUuA3{w@c?aWaslKCP}R!hVyEvkQC+Dr+8}lo%&2akbIu!x^F3U;wP8c*dFDz_?x=AErg4@ z=P}ddaOiF1WbTobH4+o(Fov;H0J2PsF<5MZBb`&^{9r19^&np zhQ40kCr`o(ggvtgr{$b_-ykyijh6aL7sa%s=JUBLfOYCXD zOieN?f3-qbR8g^^OEF32o@mnS2kfuu9CW41s`EX2SdN*7WO{*kwC``)_i)uNRe~!~ zVLD8W*#XF@Ki{bW{OKox0^slqSsPuHFdhRw!DhdI3W@Y>g+SYWRN`jyOz;XHnW&~4)Jkux^8Y+z}zdgo(kcby})d!y__D#!8PkM zasvtl{dec@$~km~A-7kHd&y&<%0mxzB{PgFiX?O2JbCiOMM-1js#RMunQ=FH`B9u6 zH7W3VDiW)oeB|lVr$;c_C>$$Vu8ISS6AF%?2B59@+K{nBN4b9_EoDXE>C&joSv1*B zkA%^rw`OVXr9lehc5(B|koItDRGo+gQ7GP{BO}YiwIyDBbBWqR= zss#ls>d-yCG1)yeiH9)q1j#KE6l6wv_Ig#+zX1IVR(H9OP@IO+w6<)cTjH&S!a|RD zR-NFVxq-1!?i#FHMj3m&cVhS^PIj*7K#Gcvih3*p@E|WVh+4)RJaR@)N}WA$1_^#% zFUOO;Q%`Lb+p@)OO=w6+h*2Ghy0wl>nKObBxR2BE`>tM10~v;^c@5g8{liV(=r?aF zkwLW$4P&u*yz8QSRyRo)&rgq^RBDeIdB$ES8wQV3O+_zf`06fKJASlsxIdJUZ{6b( z3qarc^JgT+*&l!hmmfDZk zRnh7%WIFKm^e|8zVgPcf4K6VlI)|U17kk%+;*m(Vd4BeJRj2#npbCyelU5O4X^;ySFvTH@qazb>~p-M$>^+Z0H}l6LnDPrPpm%=Q=v=0C;NCuS8V1 zpHcXvmv4oH=Q7m(5|mfWyLXx`pB`$RI`xc@J3b@R7k++zOqlp-Cf~{jnXl@r+#6O5 zupa)C=HetivY=)3s*3o^Q`_Q?>g) zuCHf4_taxh{Uf#115&2b7LWJnQG1&USGk$;bJ?dBSD0L_&6O}nF++AXN?m-X^SB}9 z7G+(|?Dzay<6bh)!}O*+j{-hfmPA`X30#&g&28qP0(<(pJv6+}NpVwVTb!dqgBr-Oli) zQ6YN{4D~o>5=IRy8Mr&S6z81+c|Io285*uj@Y075`#&n!Bng`4=f*ggZlL_d2IjKM zzBbNnlv!ldp6NY%_H;sJIgYWDCJetG z?3!bk%s+`WmR?rLeZOycuHGhZ;B>2$)IlrN4jZibhmr4Tcro$x#l+{51IqG9jBEP( zZn;S(-!50eG27|73n~2;UPq?n%(`_}^mA0d5BQ)?(XWkQ zJ^tWUXde2Z7W6Pol+M?FM&D3n4iPB=#7(T@*1S1c?xh4mj465WQB&g=6nE@M(5Zb0 zVkQCZccsL_E|P?+r=o!{;7uNNRt&fy51NNM>61u-EZ zdF4U*e}Q|vkZq!^t^N70grxim_7lq6@^Lox`0--_Is3>In?@rW*B&VvoxY?X1w;cR z3xm=9+@!BlSy@s%qh_+O8bO@28iho&%}L`mOe|_;9ZU7JU%|udsU#D2!%)JapS3>6Ly~R`x2K&{4+Y2s1!t4E!DH1w~!Md9`XHW3CvPv|NURdH+JH}A=JNz5QRUfvLsM`8aQ5PCD_Z{O!i6i zAtEee3jvhWL!6oOUh&02Cw{y~bG(cHG(K5od?~3X+Q*6qpNon3IWtzEl=N5rJ=Gp1e8S@@JD^f&7e6niIyyQCa2)&H0wEYOb{wRB^*}kD z@$vB^N00gtj4BSk2-PbI3!u8CAZjVhObz1QiofSBUB=Jf)@I6{BFYu>k&ok^JXr=T zxf!sXp5)l0pFLb{Fpn>Lk8LUZly8Tf5Nm7O5rs-h_E@Fy`MmRmIV=sGLgm$`7 zi&m|QLR2xwZ4aj~jI!bh7>v!x(8uS7tBWsQsRK5^4{gPEH_8^8pgUwlmmhaU1(^KH zm$%*)Vvk{y>#eL=wBn0efKMnciMW6w#H=i2A9#=oRL#RbeKaOA@3X&l?8!P1Ay1yP zgZ4~VNMhLzz9lRQDI?|gpjp*1}qj&V7;{!!*6x%!b0kN#y~1^%3d znonb2&3`S$+2{xvn)>&UwUv#6W>G-f6Pdi!-t8B^uKbgNwkLs|-YmvGftkR+Xa3(m z_TM=3f8&t66C8Q}Q@ZNe9eT*SI$9?t$*x6}_&vbXxyA^x`FBcVr5F{7bb~CVe&onE z0Q2PYg-gi%0-K?wudg4o=069n+DV;C`0FMxezN?cNzMYu8Uc)3!e}25dYGR6gezVPZGX1Il%>}S$-qin?{m1Kauui1m zx+#9XD}pa*F8hRWs}!j_$nKbv7?ly1I*SMn%+cK`q(H)@G-T9RI@b200Jd**AMMCx zb>%{se68Eg#!*zzuK%;uq4UD2!8rnwjF19rtVL|=R?AEL?Db-{QRrxKB9Xy(rv$YB7g=bSUt#f+a zOMHRVTdHldM}GBeccV9Ic)kb z2yI{CQ}{EDJcIrP|1Mh^Z6W36{K*DsnwZl>F4erdplFf$65yzvP$fWQ!(VrmZpPZG z^5R)37|Q;VQttCqQzvh>lkit?b;P3EzTPRA>u>Uv zfbXlQq?G02x|<;t*QMI%!N)@w062-vvC#C>Y+oXJhFRoK@k(ZeT&f7)0-^}s7(I}> z$ya~>WmTVca+hg|W#tH#DN#v?`wP4TDPZYzdhNs(_NATBP@YXWl>U<5o5-M-|G$xU z^x}Jf$4IWD6ORPZ(cwoLjSi;b>_$ACM#sqm2}wW=TD$+qk$aafUnY_(tV*$lnYzHg zdS>m(!iV41SQ7sP(wPGi6H#~~jt740sEBa*gAwJeh_9=9Vz{d+*+P$K_g3Ri$eAg# ze~1ueQ_S_fr}u@;RnMM`#9Tf+JQe`+Ji zCQjO~fZ|ZpFE97>xhfLCLy-bCvWUr(WA67Nf8@nJ4SC6x-ZXw}W#)2*Ffvqe>MMNMZEoHYh>P%F_MC#g|Q zym9l~^+wgy`DdtFRV@zXkHfznurYPhbJ{$r{voGrN^r~~WzEpmTKCTNYpGhVm{EPL z4IG`@T)*AQoF+HCfj5%MTV<-^!Mvcyqx6w=Ew55Lp&>vyucn1u+HQVZ4rMI{uPy(a z!w>JzgjaJUW&iq{;$ysUnHgY_MI8XLK-t_yj3)YVDlo7$Vr(|&?NkO&zr80p{c!SW zs;oYkYv`v76{kv78agExFZWom$SnQWvL6jAMkFLyb4gBPvlDqwZ>i)YS_Q3O;lA#1 zh76~l9rv{f02;mw3&)<4&^Hm9F>Zy z=5C*IqI%Ssv)8^I+quZBFoC>3A{KIps%*8EqWyF`oEsxK{&jHnRK#n>?EY{;yia+| zp|V!-G!>dK1IL|GC24s-3MUgc_MK}W(_(vc$SRH#Ma)$*wr=-3%iqqZK#_I$!y`QI#57&mCzM;TvDa)uePyfc?Su zV(sBnT1z*tqUq4JyhC>6sU<1q&Z2Szc*-hw_}?$1`i<7E7`*mf6z_z@j=OU!8~jZb zt0YiK!dbz1G&GATA?k2(W{5C#_4)@A-XkT~a?;=MZ8dlH3b;K7p#P zuRI4*wl}1oBHi9U*K+OVV#=exQcGityu1OVseUIt_JzzU--cN@EIjjDn3Qa}na!GD z-;o~L`mEUp%>VRu0|l`xvb)<-aJQ{8eW=KorAbPHAp|z!BRg{J*b@=rGOW#Th#{n= zY{S(93a%q>7$v((_lDwgP^HDi#E$H`__eG$)`0knE?m3_Ij$CUXlvOl1stcQ(J3OZGzt=CMJ7KPgJ{|W?xg!lXF}&wrLc`IVtxEds2;} zGS?&`7qibpkB|LdEo?1+_5--nB#E4 zmGGV%QumjNDrB9%cu~%`;K3>_WCiPVmFDJVdKfs%q;_ZaBYsf$mV*X}zICSmwo)aa zi1dXo%M7!wo}?24g2Kpm6QY9<*C1+{!}PdZmdnF6d%petj^e*y;C~@hvj-L$K$6Mi z2JgMEh~dk1r2C|STff8ShPNWq; zaM_wsNU2BYgg7?JcG-hEYHL5L(urR$Z2T?B?5AkAY7METhqZ~5bfU%<3^aed9cb-+ z_pV)S37p=VHrc)Tb25P_&nwB;G<2^#c|v|(2t3)u876XThCPs31@YA3jLWU}Ow!-I z`<8I#%$aWc%);~L?*eamr|QS5kF>ykSexk-uli8nHFO?}s%Rar#2I8p-~-b?#W~e9 ze*@*VdFRe|4K5J*OfV&jgpw1^eVnDnh}&0&;|@{%(Dp0rn)kD(kNNv2$b~tSn;Ebkbm)`k&xeJp zzX-p^HTy`0<1`I?hg$SZ;Bl8jjJ-)=@wLS zEmNA(jW_BUVS($fn!KxMOctMRtbUc*V*Q0?3168Sow%ixM%f6sOlT3s{Rn1f(%+Df zW5L+g(~w=~tw6vGmBi0Yas0%^XRs!^&~dOad$KpvrQ@~V6muhaUs?XWH2IelupWPa zHN|DduSMOOzv|V`pXZ53DpPzP@ko(^16E(j|CqFzOyIU0^>jn>P9shQUYiPa~70b!zMc2%*BlLKn1&fM$Wgv8k_@I~hR+#MUK9kbhQN zSqb;FGzD+!asdIc`}sfm;c%^Rht)Z&v1z((7rPwU4~gbVhl49!+*|oY`YsXY|p)#U%p^wt2wADHUOj6lm(b z3@m`x5fPbLo+zA*1al>*5t9>@bnsuzDz#3 z_oc$wgXC*Y1UGWgQns-yMpNs0$np(8_Wae2*$d5K3nTJpolR~mOu9vuG8SK+Z0T&w z%@rXw7~)a_gdg$=o;rw#>??v8sOeO1cbhbhm=r8{C@8N>UPlXzj?Pm!hF)TY$0Q|b zKY#w5FvW<1>oK@6jhdk>6_7U94sA*L>2UYnJxyXz0^W`nDqW?WbTDLjygT=s3eu&eb$k#aQ6{+)6VBajwZUmyhTBBr5f3R1UH3g zK%cbB7ycgMGv8nVy9I!O0~AN$&W~ii)$gon0Uri>Gz#- zsEf|*EwmfyWp@3xI4AQ$`qDQM_`j`clhp9_k3@*O6zXIKI1wF~K{g!nx>_lOM-shf z=0MQ0)|`wG;dK}dXgC0!Qfq{|Ex*5wdHGMttyQvX-Wj`QPLI?{qtOSr0Ry8C_RY)P zVkSt@U7tLQwvxc*5JCV8@-MhLptnXHUv=-!oieA~NkhMa-$N@vKjO(+F*9@^J;ypV zqH#t8kF@jFYU{J}C{E2QtkJO<@;I^>zcx_%1FhNV2c`{sY!Yh(mJfbQ-Zg}C;=#`V z$w@m8oCl?I2(30GrW169R-8RTSCDWqwjEG+(vKWDlH@t#fhLp6a%(FCzPfD~EX)|v zJpn!YI6|+DeZa4*1Hx0E1wde zt1hl!!+TWE`zUx?WQxGvmd+hHV%BIfs|r1|Fi^?Uh|plN)&U%6n|%Uk1m2U8x2l2g(aCwI)DZ07Za-@9u1amrAk!KXRD7^~nlK;5N*pM~@0 z&MgPSfG}OHdS&JY-v+8|g}{pD-jb=zj9Ii)#;mh!!uG*un_SMOxf&%+@|i0`GOdDy zK31^MB%@-GV);Acp|ZA9Cuh@9hx@&^W=u+Yujuy6i`Q>yM?9s4^Vm~mk7Arze3DeV zrKjnrtIPb*b(Hea^cR_Z=Ejg~19&)cCRE7P=9$%QrOd4Nbria>Zt4Aw&kT+Tr8e8I z<{jBGzh6nCL9ciV3cF^TwAl1eY9%{8h0X;RuD*Q6ff2|<1qF@=))ZB^*ZSZkIHLr5okM$e zi?a-4|MSm5%(Vgk zytV+oaiZ;_MBXm~=aP49M)T-I)R zkIL_r22W1nFWfG094GDKD;;21`_pD|Gi4_M?;Jx+3=$^?wxc6p31oO{V};;_PEu|esHanj95r3=X&VA%vDM`-@%J?n<^Mw zF~{pvSp)YOs;rXV`PL-or;314g#ETqJ8d)M5(7nImM{{pYw(JDeea`&6B~4_v1xc8(#hM z6T1QaFelTAm2;_;w-ZO@`MF6D@E66a?4PF9;L_4wFp8cl=6$bsU(nB{pwd=6g3{ym za(2@KHt9k$#NAU|;jTQG_H;h;_GdiLof(B~rNZf@R`KxKq_|bz0|6U=X zABNF$DJpgjkR2u8qiite3l-uxXS*qD?;uR~jg5wpZ8?*@S~INaY34&!qR}|@o)uz`5miC;rBmFiD@kEO!|-CJ1h`m)Rm??G#r=?4B|Y}&-KVI307*1oPj1% zz0jkdYq+~c>tEL{QrsT*9P)UYcsX|Q(019!nxgIN-rc+9WiMxfv*j1sM3+p?%p5VO z-9IX3AU|i>Y3|3GVli`Wo;$zll;M!NUP-!ZpE!fitiTfS0umkGD-4Zd7$=HQ093={aUw73eUGgzZ zpLJs&sZKD$!;m(*p6VH$go3_v=S~r|qrO{D0(h{-OFhk7zdRkb?u*RnNlZ*cQWv}N z{w&j@DeoGowr-5Jb|^{^hbyFg;*}>>0cZxSnB%8`b6uLQ%_e3yB6;NV8*8IMkch$Q zv0MUPS4bsrw$x?`Wu{nFRW*U$WztETY*klnZHU$$;w&IOG!z0bt(E^Oeu2*5SCNsC zau*zWYIV?>K}>VR-xgop4dKiX~EL?gurG3J8Ou5L|8NXWSQ`xWGP zhv%=yU7@RQGs-g4JC06AwEmq>%{I}yhDzC@zv=yv!-r1*)sXTKoQR*p;I9#k4ni-q zE&rV95d+|M3$(256nOZsR_{Qknd_RZ1)!fD9hq}$lPw}}SrHoN?mT>mCX;j74rCG1 zKCR_gbdb0i;Iq&M7yWJ<1lW_f3VciKK6ezzB2h_6Nyk^A^AD!yC-2X`l}R{$`0(4f zK6sO?vwo|_o=Vsc-Gd=M1;nU zwQg9qkJuFgVBASq+U-%V88B|&z8!;RBmgM_R3{KGfJVg8WUy{svaxJvc_hrlXz+DO z%9hYbQ9`RR(2x{B6M9WQO`OWT)f=;J@`<^@+<)@(N!uIzsNcX;=|%A5?+sYymuv(H4HoQ{NEzN7qo>%BWIPDj> z*I5&^i4H<7da|^&v_b)bHbW%z*`)rBG+UuZH}-TQsmUF_yormehIRc3>U4a03?w4C$Z%wj_uTOW_!>b}c$M(LyFiI;Y_WOy0CAF73xW0_}&bZHjybUf1^J zLq8n;T_D``_4zKL>`|-?(z!sIs&H@m5gGxzn@8LcWf`!ACPQImf<_?Xg@lLn^I(R@su>4DvUJ+?=)i zgUYscSuG@KhBU9_W~X)9+NRODRPPvv?d>ZhEjF#nJw~Nvghb5UPC2!4l#qjI79P*> z5BX_mWz41OGM!6=I`Wx{Yj^LS%+8c&6E%@V@k{?4lP5nV#?hpfYt%c%^}gu$Xz3~P zI;{<_o-L~3$;#Z6N9jvycuWTTN#AZkRAk?)KzTPR>{BrBZZ<)hj2HWtad~hwu~inS zpvH~xB+7bI)SLx;2;V@h5+nCnV*HC3l4u~69 z;S5RO??V&@k~fOuqdeihtq5b^DNWzwF=hMnO?rGxu4?GXO+I&hDP?gJH0|$veqKso zW0mJN+W^A&pOt)*?sRth$}FJ(gD*)_(gF{w-FLGblD{sV%bhn_&-1gFbIjMWQ{x-? z%J;8omQr+6HLAeMvQ3c7!?f?ph#sApv@2zjD%%?{opXknJ}S~a`m;AzH20FnC_XZ0 zlLVdWpQU##C&oc@`n?j(_oOjro?XtmST;bp`YC=1)vM33yRJlMiLz$kr6QS>!;2`1 zf-0NX9A7G>BIrr8HPIf{J{#BJgod&&rza_f7JPAr<{2${%I5I?yqZZ8qjtAB&81Cz z;Q2A!u%q<5@9rsOzIG-^?6{M1T(xK{L5bC{jxQ=cVuaSuLE3r;fQ z40*|lY)FW=adz*b#`tYEar?iM#QP!116?bql=|dZj{;;noE#o&D0${N`O7IP zn|vYH*>rVT1x6N_oZo0ofaVAAr7&9g=_QLpRdB~fo}oeCQ5R`d3baj}XF zBnZ5u(ilJH(%=(T>%DQgz`@tKu9eU5mw8T(JC|A71gC?OcYoqB*^8&$CpTRqhkFuv zVg)mJ9r$$9#qp^(tgbtS4EH;}J>HLLO*_kPYe?1GIbPGyr20L%+wckH!NE(MAzQdO zWzGxpseGf%_Il3$HJxyrymfTYnV05!m{V%md(JYKepfO|=Hq)g);i0)Q=+7}uaQeX zTPnGPS|P$oNiApp-4tNFk=l9~*4)jUo_Ie`0c-cvccU_&`Bc*#2r`hS1B^u}%RNTz zK8vX93pvPH%C2(wVBT+Av~~~0z3sXiUJ7yMw&ctcApFZ!5$GRWc*Jsq1MiM zgv0RjKmB6M7B)Z|5Qi-=L}Iq+O4~E!uslz0H_o%z-UA&;<)F2}wOmN;t+j|xo)tn4 zu88nvP6#QuoMKD^3)>W$vuAqQD^5j@M}dLZ6kzV$lK{p&)!4+K%vw=GqS%_{ZxILg zhCI4r0w4-wtCY{5bpH^$!E?sA^U&<}rUHGuj$NHcsWV_5t1lhpJPZ2f-(6zB7N2II zx7xfu&CV!BmRu$!vE?gcxtUm<{Ah~Pkd*=V8sJ;Bfkpc)dTVJ63Ik-@k?5XO4;a|d ziUVkklMqdxcmapqi9uZC66n3!9QRDa=h#pvwf^$`-i)qo;B>pt|667epB)Z9-(|>o z)VE<CA{fH|Nsr@kB|R-~ww)*B5{CZ-_UQnp7z09z5Q_6>-9UZmGSYoX za4C77Fe0QZS-O;n>clY6Q=6;>kzV8yK}*k%8AX*!dX66@X1D5bpsx1xwjgw;q>~*= zQu~TOe=Y;?U%q5O>*Ir>ZJEc2o0V+Ufx2fJ`#boGz}#t(e{Z?tjV_eJg#9HpPSS;s zisdMs+!eYLPoF!dG@a=~r^8bdM(&twG!d&tLr<2PCSV;oK6qxTjUEOHQ7!rX3>2Lx zXepjkshe ziIKM?NJ0F@`;drWk6Qn&{nd6PT2fMmF^8$|v-*86PWy5zgTR8n*M4H?Qf4ckAXTPC z+AKkulFbYlMy~33F!V6gd5p;hKtMH3)P97M2dhskTmzps5UQ5!CZwi`Zii3a!jfvJ z0CKTN*xmjLF4|-Z1d%A4#+-~F_ryiiJjXr?lYNg!?;f^1AQBLuEJ?tHwM#yf!?l)V zS}H`WQ(0MOkjPPR`idZ)bYK^H9A4Ua;k*cJ zXplYHkT`1$=ck9kdOVG$^~6ooRxZl-=~F_P8^shMO2t-S2?Kj-qK3jIDxL0qsPc$c zjVv29`w(Vkh&2A760LoA;eN8S2Z}jV1fptWtsp7|_%guy5p-H!UY;>nA}crw&5vyeu|P+M>2|<^16sCp2pjSZ$rrv58Qr zfUu+um;6au|FA&s6QJ7leb%rV3L(r+?3GZ(G8<&G%uuY z6xezG4yofHPm$st#^nhJ!UX%bLtm^OwS=?Od+)%VqMa2L6|wJUphK{Ce8FX^uSJ<+pP;MGk zZ970XCL!s$u4`&sRX1(qP^IH&IGgwgNv{+fvS=2&a^nkI7L&@=^`YKceQ8X!F(yGH z^)qSOCSB{ARw3?V{pY;Dq>3yNxrAj6Th>EVU;bxo?vvmL$uJ!H>>H$sQ>cUS=U z-wewJop6Wg5bte9+xO`a(HiB4TC&EOXNcTTWk`XKW>;f0VUeO6$)Pp5g`MsDy>Kg= z(H4%|GfDlrgQID8WMEI8{cwW%vU=?QRh#Xas@G>93=SIgk{0}CL?b2UU>JTYh`|85 z=}|h-a)}>{o&=YfJ7hh27}>Cfa8HobJ$~Oe-i$JmY~zE)d-=*0QmUzuEtZntASLSo ztOGF~iV!xzk*cLVN`#R244%b)=CZQS~l!a+58wKQfCi(B6!fJIX zU(?E?O3dG>w#Vj3g^kZZOeXeKrd@#`M!4!v6Z7+Mo$v3FB}^fFv_l{$TdsHJCDa2F zSa5Q-Q4js-r&1-rSb%6B!d7Eu=-KKldwBy>0M3PVq_Yv%f`&kCZ6Z*+z|HJHmMgRi z=)YyygDuS8Uw~ARWPdx9>4w6ddZ?3!UNlarVndC1d?*xUHR%qUyuG7dC0+mQy+W?Tx&rsf*b+UG321bX$0XOf<^lg_7aXg zk(Ww6(iR;9m!uf2)^z{Qokum6zgDhqS~-7~u^u_5--6=>^_Dx5JBAV&y{klLGpN)? zYR&+MlyA%Ujlaq5Uw;g2J7>cEMvGT<$%y=MVtAw8e~?^CafiTr)arI%J$WTI&{%;d zWXJS4)5>N`>F=k{pGRTuoQyMly-(2;P5OQtdf*-iK^MGV7k1nzkDN~Zhj)&u+YGLx ztae<5m$EryFB|qCyqmOvz(MQbGwSo~+4puiDcS35xp(Q4r+}iwnKR_|4bP$x^lK4H z6MesAxObR*io^r%%bASBW`L_fnwS%@76@2m3pTXCawZnq-n5nl5~toO)1}NSHyZ-( zfztVg$t~^JeTuw}bAqB0z$Rnh4xvlN!KO$yDj7ZYpxI?2UK-PFjWk`DIw#YJV7n`vVy1LqO%Jh2O4pEY_V z!Wn^Ja8Hmf#i|^4R|N2iZM%Ch|8WI`ikwEYi3cd{7Sh17*$Dgs3X<5I*nPjma*2D; zgyEYQEA5pYVrji5J2e8P;6BcWepx$qTXM|AX}JfP*JkQd=JRQv-exP0N-5i(L6@;3 z!8^#!ShP>kE{AA=5Lg*&APb76lWbQ5QuTt&3mq*jvL6Pa;xQg1sAHa!9Yeb0ibw|r z>63tcIriDJXL7?=QiE^hV7we))e&F6em^lU00T>(|GX%7{u|1s3Eq4(d6bwMQd!O~ zd*im6c3IvSf*XMyRl(j2E0ESw*h-}>zi%h34n~-kd?}}O8d@|0Lt<~}+qY$L-O$(N zBrF<*#aWl_xC5aQ8=iz=>mWc8*9myI2(60PRAeS4hK(ay-feZ@()XA3udnlP z%GMELZ@N_`Febv$R2)9zbzzTqo!xV*N7k#m^?ykaJra;O29zYb^A|iQBzFB&_{ix< zF>mS$^7CtYic+@LIctn0LOk&HRzW)jDPYi7MU1p?CfyL(f?Ng>m4IyYqYPE)89QqW zy;pL3y{=I~j0y{^@dSKPAcYEvn3eRf-Xuz@?1ED^x-a8^5*cC1k5_Kk!N4l#C zzlI$=83@Gt_^Bi@zVVWQY*Gfhm7!?nZ|1Y=>@#=uDbyBy=4akl_Ttzkw9rGA*C4Ii zM3uoKY6sLW$KtNUeC=|DeJd9HDcLOxZEerVW=Q}d7U{n4))eJnqzEV{Y%SUF3&dw< zcf`5^vY#U{*_{#cLx;5U8Q<4&+(-Lmhnd$#!#X^*dVf|BN}ak^famdt*HOK` z7l81fAp@*iIu#n`S%3WSp%V2G$$exM!{@&YUFO)B%H_42@hWNaCoCw;lNkcEL-jnZ zan;f?k3>n#qbXOvlAr{ZUS;tABX9AmuX8#`YN_=dsQH9RCwB>%kCc4ai!bMR67!UeKg*^g$nBbxgaO;J;jt5v=gdopm^M?t_vOIN|awxY2HzXI;-;D<0(#1HBNZbIMHvKS#em%4@6< z^eDK%hu34sg>j4JT5_B)?zfTe+se^Y80e`nd;WaYB#M>`@FO&vZ_)E=#(imy&kcm}8-GRKj%szNEtMqh#pLxS+UfRTUH#)wD zGV8&|n<8@*u}1okamk)D=lr{w_k--anZ8@RD_3oMdiK2E>D#fB$XUydckiYS;5))farP z+-NZ_xMVt5VoP@IQ(imo(%rzT@?)u}tDyyZ?#y=ls`o93E&b6J(J_Yb7y4rFpGyYv5)s^e*j zx)mU~I~a$DBoo?IoSQ`n+#e+JZ`16#v`-CBTh+j~Go zm2K^!8$$F?XjWSN(DHZcD{ z#6@wpqAEX3X4+Y8i+ld-g>PyCbsi11kM09R#h14ICqUcI zcqxX5x8Hg?UQ7HEkPn?dCN=#<)rS(#YKmZ^({k=&v3L7tJ=PKr!;x8XB{V0fQ+S*J zDj(@NeftG-XU+b?1deMU`y`>cIR^B^xES{){k@7=u751;lyI(Om5Wd{p>^UdUV%(U zFO%)5^T$AUYeeJqIX}t-T)Em<`1llcfAKLB!p3*7qJ_l80u_Q`X^{PHhVSqW+uc#n zw%+^r@fQxYsuS);@S8`5yFWblgF?6Gus$s|rsG1b3^Np^ocr|m%Uy0G@z-N zHNC9N+?{p2x9s%q)03Q9D;Ku|RA@K)<>P+0tL4~2@8&4%#8_p1NdIqFbNUT}wX6#3 zzQwos`o(4Sm}T|9Q4QQPcze9I z?$N23u$4lc(p(*fnII%H`Ib^uD;QbXXMx>+-#Ok;J8G~fE@Rs@s~XE^n>Il`HkIuq zcJ#I_lTcRQ2tdM1hHuMjP<9A-0JF1 z%!=G@0p^~01au)u%UpJ5EX5{hYCdu6j@>uhc`R9no4Z*s_wk>LYDpNBHQ04HO+UUS zi>OokEIkCdssUDVCir|UYQLb}kt$;$-#W#uj2ba_Ezs-2Yw-TZ>C^7Ns;{qCKG0%n z;n`}9vvsM=)0`=_y$1`nMoTV|UcOup#P6a24bT46F zf$89Yf9Vh>DOHD&9Nl&>$iNJer{eV9y8KfO&fN6ysj5zeZj0i}f8%d%9{lOxm7oNJ zsBy*jtMqOhA$1RiY(eV+X_tX>;MtOrk^_bt#P?nGt@A5zN3|~@#0gD4I5-%G-aNN zvE8yxhX!FMp5|0O5WWtmrRlYMg!17c#o;&_s^Ba6H?yF>c|zB_blKB|VMaGSZ5~fe zFZ4#GG49S*CSw%Yh&e)qx<`6iJKabGghuUm+6V9@bRvuc+4D>gE^5k4nL;5r15m}~ zMl2>ScZQNEcPO4T_As7S!?S5Gdiwmit+iPoHp5=GUEd$HkD0g5Lz_o)%)Zk?Qsoo0 zH_n_nizJW(=2R#Zu3Ueaxny^l5yFj*=e3@pWI_MHrh7o<`#%K#FZ=@=Jj1P zlwfGQrpMqA3z#vpIWOVhPNRL_+)D9UxW?yDMT9n8dB5rHs)uF$@A`x|MHN3qc%la+~lz)zLfZ`q6hS}QgITk+rc5*PYk|8Y`I z;K7m4I%J>BBg>`(RR-XXT6(rBQyor%M{te{9R}H*CwKb#0OkQ!YRU4?n>TH0`h7`A zAq*JE5UmNIN%_X98YRoWKh$Xb4aPLxH3}ZeM8pHgXZ!c11!Omx1pPEogzzEr!ZGA% zL}6Wu$0Q!emmt%2GSxaceo_}qR@aKP6c-h_!gOaCl)|^q&d=`l9qsic+zil1ago&6 zNHr!*kAXA-)uaxvc`Bw!N2_3dkK} z^+V~6k@pLyw7YY)@z>pMpz%ZnRqcgsuzC=yp*e9Psb(>^$h2^ySH!HF)g{WEGf%{sNGD!VDDFENbB7 zMHAHgCD5LVaB|VYNXT!6Ck7T^sl3Jbfwo4X-GZEnEBo!^683q*_MUt+o?a*sp`hny z*-Q{sk~<`!a`0yaxruX!?Ig&RS$MvOHrkPL6D#k#v#q?|o=;-mf7pk~7)pKl^8Q3c zOS(suTfseG_1&M~6ECD^u?A6rLu@;1VS0<$gy|n<0`<^nSeACA4A_r)S+dj zx7(HzynlA^e^`01E84e3-A{aaygVm7(oiczqrRSPHe!u(FT#W2P-)3^*Doc9txRaK zicCyopZz~i3)ye|r}^Q3{f^KsL2HbxSi4K|CeBX|B}N$-c14hV0P!q$UU>PU zybTwz&y=aSG>=(%Lk~|*KK%e{OMwYlxa2F-6pgYBpc%F@8B@8%PkcFx!JS6zRqU5t zPp2E$eE923;HrIRNu7e4)dtf5zZGi%8`3*+t6A+0(%j0i$|3jQ|JxFIt0%>k$Md2; zbhG5$EHF{Jlvwg8KN{15))M3@e9A1=^wr>bLXI~tJ4wADTy8}EwI$>U{vy#WlTg%Te8z|bW0b>2F)Tu_eTPN{ z`T1$%5-QxjCi8FV2jw5&zdBs=&CcN`Zzh%kRwhr_7<^48qH|WZ(}*i?y3-uW|FJ^zKad=s^XZ=A-EVv!;--kXACi< zaWb$L{V<}X5_4xniyhY%SRG^m=1{Sk%vzu$Dn;oh%KIE^v;sX5M95QE-t@7|=T zTXA5Jrwh&jV%Czc=@NqwYz-0LE5(SRFvvyt zK*Hch$#U~A!NYDh(c;mRG9_kmSODz5<2#pX11a-WXtrOVJ&A5wp=mje0(C8arQe#} zz?=;Fca%vJ_*l=BxwBiDb#LFfh%}J!E>Q*F_4wmN2J96YXuHXsI-LzT(djyT!;9Y)Jk+y2XJU|p7{=T4r0me?arg)uu7 z7#O%X*c?9v<^^cY|E6-4TX(sQ(#v00zn#W#!z zLhqVE`4>)=KUR4&9f}1$*W%jVdrs@}Jkncx*+rm%)|=4nSscdWRE&0Qse05%ofOwM zMiJxO+Dm10|7bt>8Y9HbFlGvpT>^wI?L1id$WLLK5O>t2dv0vJEVngr$^O(T+EG}@ zt?ojCbnVf~UAYDczF}@r|AA3BcB#7kX4kD)AYCdp!VeM_SCilg9l9Cc?*8T&{jJzw z5I4gIG6X$}Ue{Jw_?+~W?od9uhcQT@t;Z~8mM){zb(kA+LAWk@JhwG7W`A6Vns%ZP|vqB(aW24Hv@&r!X!Z)|9RcB&PsZJNvub}C1 zUHee_c&>tbtbj~|{(yzW{o*%LBJ1=erNUNy#*dj;&iN&bMDfJj%f0Cto$XHM_~j)z z{Ch(^Yn<_8>B8}PlbA{F?n9C(59|E33I{x5Hqq~iF9#xRqa)8$t(JLna`5b)q07q| zue_=g=_xN4oxlUQWw{3xn9M(g9$eY?q4gUhG~ZW$A^m3dtTF!JtpZ8!u{@}j;Oh9Hb0uq0m_hD|*g9|JB)(J=}J7{Y$HroK!;?s;Z zTPJWSAYfO!iXTVl(mKZa?RDvpTmteG93d%HNY?^b9bLP*K&YDuoO?nGKR9{D%2nXd zv#N`IQBWp(nPEn+PH(7YCOFMfK?=y1EjZq{^;G25BDgkc+C49AGrQ=JZ)S7m<0-Mba} zR;Ym8ULI~BW*bssHv7-3c-NdfaUNZAMr0jYt9Jq%iDLcRavL1fAhm?kSKDiRxBco?U3#rqEHg8Y{t-*9HO z(LPf$svev|Nl|mC$5@)d%3goRk`2H<{MlN7r2+?6B7@ye$w?o1X0^S-#3h)!& zXu1s6Aod2bjlY~8z}8ERM9dflm4YOY1Ysx#Q7>m?qEK|EWB9LxI5EB_Q5Z>AjV>42 z5{WBvz{Kpn=sUEL;sha^mWhHLL;47=cZ?IPBKTgEzXRbANxbm^IPtTAA(2Xprvw8z zdyTu559i>r$Z$ydRds|W^GKsOb9(4XPGQ?Byp=Z@aw7>9hwBuy zM^{Z=KBnNH{Y!VYfen4 zGk#F(B;P}dHgxj=Gmsd%WY&4GiW+e0jbTz6zyH~v8@?}v5y@Kya2kvnc z(ro$-jMnWQpB!KI8718V40WpNK|ywGUA+odIOEO!G#4w#OR!YaH6~D04-H{~*TJuZ z0~bbmW{eZ>0i{Af-JR`ul$2zI4<2bvWZ>Tj&U2~N$hX;?9nb<*S9@3OTMJ5{eyFAe zKnOD6li`rropPTqj3&s_ohmonoB@xm3$Z{P^=G}a`{xQr?~-90#(C%__~;5sgF8Yu zHuw(J-w?>u7zNI!EjVy!YD$TA%ua`(jH=F71Xxe7p$s7lxE!Q9Ba2nAA}n?|8n(aN zW5I(fMl9&Ke1M6x@Z5lP_{L#Tk=Lq3rp^(wvogf!0N3#vl!{1Fkb{ni!}81=6+RRI z9986yLqT;zl54;_FvU>bH6&m7|DcG9X<7d7>7VyS#Z5xVMXeH>DJ~`CW8+nxR z5b;W3ee$BbtKwGP-2uv%TEWw#qCF*aFV-u$e**ovhu)~sPqoGnqi7@yERP!bGP=XD z=r)*{@SiNh#zZkv-bkFH>znLQ@rz?fZDBnDlSCOO=WtL#gV%Op{cWplH+2GGsJjpJ z@v5XS(AAU3(&Sr$a?e=YQB9$o8D$}{c^r1*FsG=BL7&L;(P2zS%mmeR7g~eVbyPn) z2;KpIJJl5B)mX1g^$y*id2&ETMy6ypY-fK7j*E_dv<;St>K1L$E0RB}W!GMoP6`Xt z2D9ywjJ=WftLjnEVj_k=N&>~$O6(@(2W{VJrU+XznXBqVzVDWTAxywkE!7WM&qr5KcU*_$P=C3{a`nYh9NzTBo;9ljQZES3eV$Aa} zG@{!%D!C$Ev27w-R8;w2J_Nu}y=v{+DWSe2X+A?=w?O?xX@r7v5d(;^B4~E zPUUkuu2Fbs;IO&rgd{$AY2lU9oxsKC2RIL=X6}7*mX5HpEmg-hVp7>{JDxlu$Sxme zANfS0A|Q9EZm=bl?0vryw-hr3EYc!0oA=)&YGH?Rdw*iUpZ)bePoTvN1sAXj&8}xj z(Z@%xRumIK9|IFUNKwXmdKa(+{J`xz^aXeuX1qCgE)DRU=!I=Z0Mwz3A zh9wX)!iMRV1nPhtvYF^fKp!H&g#vci1&%88EAB0p?o<`5xg@|ZbvP?_9He^9Poy?hbZL=I_lz2tEq8h^o#96 z1ew}|E?>k%?}S`frYT>ww(D>#{g9a^%6PoR3E#5$*(g};WC8YlXl@O@tEJ1x&@l_2 z{?DYz)*NVDl+{ydpB=|SRdu6z1UleL=!9`MJDW$NxhJMka3#!Hk+R56gLjGAz`2QD z5(Eg|7Hpryy*3`|DUf&5QR2gZ?Ks>r%gRedZD{0<6MFy3Ii!iOGGUvJx=rXC@YYK) z5F}POZpndkbpc$Z9Vnxb#QYu0i`7G0LusQpkf4mQGLfx=pA~B1;s9D6jM*(TOIxF- z4+Z6~dl&X_IfwCIAn5nlx?^mboipo!D5J~Oc`#A?NNC?866!HRhJsvaDeZl0LbSG0 zuO~eR01-E=R#mOdrqv;*UWO_|@#RCS1+R*Pi91+il%@zstsCr+X6!xN zF@Yp!C8XJI<hcN$BY$1oS|mC~7pT-c{9g2oVxM`gqe{?l+&0)oUd-~m z==A7iuht01{P-1?`)8NpwVkO&R6-S37jh(ecX*$Cg8>mSo5ctxT0q zAVr&!))`^jXiqv8C#~<8>MQcJNp461pKX|eXrwX|_*eh9^b~=U{1LRX(csh5)C*H6 zct0Zulu}TMVu~C5{7;?Mr*Yr0TmVF7`}kzzF<{*NnovPhVKf4iq=)Hp5enKiwFABm zum{3WL*1hz42KN=LVUK5#31I*JC7bsMkj?(wFtPg*rGWQ_|a4#JC`*NtJBEQ7wGsb z+&xfv#QpV}tz?UY!;qq#)ht~w_8_f!PTw;{O7FA7;KIMiYmmQa(IW7ZCB0FLmDyz^ zCYCr>6*zh{N2I5xZ`V3S7Bq+pC6X*r3^0`kh--^Q{|MfTCTBT$>Kr%-fedxt+u%B8mSh(I(V;AdW~J2MJez4kdMYYuOc+d+DnYAe13L`=~-iiq>~O1`6_;bso)H#o@T& z+JD4^xMOg^l|e|q*t$jw-o*GrWB`nr&GDAJsx4R@;7k!mg8I57f1Es{JMej~$nN{) z9uuZ-`?`I3PC2dtS4xfv>|Buf@a{-R0n7^BP9AF-l01&oL*z$Lt^~3e9}7$E#0Ny$ zFqA8lkmO%}6R153f+9)x_X|K6$MyyFD(EIILlyz^y)euWnG^@mP zXk8OxSszoUg6@m31@38~?TK<&Z{JP0;EO&m)n*VP+Nxa0>LA+jI=0pNsmbSL>aj09X5q#OZSP zhT38YM&DvCR}R;T5&9{|dlFYQGwoEn)2iHoo?}(#QtHjedWPyxDuRD@mW-DcR}-#| z%L!`pPn*n5P>-jK1j%~5LeMnPs|N9}uWgNF1N=Fl~f zj#5?j=y)7m3Qnom(ySYA+SC8Y={#0rEFj)kHnYWOj(BEfzo&y9T>Ylx@Ux#A3m7WX zXJ|e1(o9Bd{AfW{+cc);eSh!K$J&c-3j*l0=DnyRZPJK_V@3@0(0?ysX|TyF>ZUPq5`o1z z$U XVexk0YVQ(`T0AUlhvIx7=$1S77RX%Mdq~Wj8q5LH^t>dd}jh*SR95|H{nac z`eB^T6t%!owBDH+3AVUY1kax6stP7>Zzc?_X{Q0UH!^>sbX1##&!FZDmm4`5(zR92 z0@BOq9VfpAaqF$zTW6z}t^A-@?Ow}a*bacv>yU8W))CmKss-;-X-qUZVBfe`Ro>yeELI`8?`_z{OQXe;NFq1te zApQ60)2B;<);X-;;pdEqiolN=o<;-hNJ3+B3*2J41NVOT;WeHg#?}i33QMNedf5mY zO2yIkn`?k?)p5Mt+xoaua_6>XPf3)GV6n6la=4OW-qH~cv$-h}E?ITQ@yWxS5Z?_E z?;B?$7e`04HY39X9yjry`jyFiTVgL#&W>G_eK2G_wX^7{5o~IZ|;b6 z_A)n*xkSXRnZ(?Sh>%x^O;MMTQEKXDh9V-#Swr~{=mJN}jqehC}x#6}^mqFdvo zu#dMl{62L^+YrGn>LzFZ2ne{a0#BIP?K&5t#JU%u5&6+Erir9TYi|Y%2gW|vj z^ZG!vr!J&#WZQIPDjsbwds9^GT{8;gj{4p%?P+tp*_` zKUB+#z>gZQPJLnwp}k;b*`%?7zMSZQpxz0kv|1i{Av*vI=iBITSVAB~-Nt+mAVL)D zLs~)@WA2Ez%$k=cQ8kJt4Ur6rI!>IL^+!V&@C!Dr1lTy2q&WyHGY{xBZiCd&Pb zR-lkNyHAp9VtH&6o#l{DhId+7^gw894A3h5^Hp#MFOcs zaL=NJ3#o|(Qf~uk8f&2pAQEtP<>3OPe|EvXx(O{xmzkpj+y?RNE>%7t?#%=j8)+C@ z@J`@fM42Bl!B#?sJQA4$>EiIn+M2LJb>E1@wBaZ3Q2$XpENSI=be=}=Q8F^n|IV@P#BFrjBV-cK-miM`he$Fx^F*RVh(LL zJY;&UJ4??t%hPjcF;};kHF$`>IM4RsVeH{cAy9*YrJSZGMCBwg3urTx0RrHqL_H^a zO+Fbk!CMM0WT+lXBM9v{vmwH1{gB=3iy zd`iM3KQYjkK(pO6fA(b8vXT*nS?6&9X3pB||KjhKNh8FLK=lp&m21XIX}S(qw+QC? zHAl;3r5w5I@9n~RLR_hGDvmXBD(;YvFCoeOz&GD!fF-3+Qh8&#Y$?t<2*74yNNodNXs)Rq($EylGAyiYQ#)6=zd=1x{~_Jc z_vzE89?Jf<#RnS$_Ja?l{MjP)8i;{cO3o)bwMyWM_Qma${+sB**toiVO0B+|SYsbh zn-%8pTmIteRgQsI6)ZlM_G7+*w3LF4yeh}F25&4%-6!KOizw}6ls014m_68Y`ng|d z;lg48t~E*A$TPjB&T1fPnl+x=4xfX(KOH z7vRBwFMjww$eqL8JB`5{f%MQh=LEuj1h9b3wXuCKJ#77pm0+}=>ZknlJ$o{9&IyKz zqPQW)MT^_!&+o=GxeTo)d|9LNV82!}EcyaNRfbAHd`;%kk%_Mf+GD@X zjFV=ckKqbj8vDtA_i4iXXztk6c;})V{Ljlq&aX({O6lOCn@e3Gd!~H%73qx&Q}XWI zzD=+kKK`Va9uveQ!q3e=9=U6PeH~WP0)@{l;8Zg*e?t~ozCmY}QPGMPl#tLeux7kg z%GGw34${l#-b1Z+mQq`QAMC`jk#p|jb~sMlDM+bsP*CDsEq&L^zTfOwU)lx2J_8Bj zBdFaNZ7s1`QyO4DzI*y&y~0hiEhzsL?V$~%>4<@kb8&)eN{Git(JV|O$-aZIN)ot( zr%19x8k_>)YXqoW4)9u*L$p}s@;!IJZ6#k0EI`Wl#@6K18C2VN`}_*pb-KwYgJKGR zOp#*=_Jzp%_w}d)gXKZvoG0UF?+GIlN&x-X#VDTZE_y`@EMSinP^z)D67Bjp1|uY_ zCl?NS{K*f14-y97a5m3MJodJ`r3j~Og52d`=?pn+(AwLTB=YP zGr^gRKn~6yMKGf#^9nh%ute{JL7knQ3q2gU{MPWa^`@(6Fj7>czYLq)kGfc7qbpu7h ziGT=Hd^oGfyBSqwGe#)8(3L}lQ=Oa!5itnFbm$YKi;Ox@m2oHwlIlWTb*nfnXwdWc z;0p(YhQ=dwsL(NkrYg9%FwwdVCxl=)ITJD)-g%zUDFS2x(&kdu9cJ^z`K@2GJk?V$ z5#xp9b(`X7r{Ny-f$Iw1wgVf4jbhUNSF_M35&O={r~mGXjFv}>v)()pp)Qfh7M~%? zTz)Yl(IscxV_Z#Tj}B`xI!92oYs0O+u<77(^fRE-d~a|AC5XVIEuoKYao z?ehfcPQFf{m6BATu&_}5caaQ;q;O3=GN&tY0BC%DZs^ARr43s^OHhXR`2 zw-$^)IndMGviUQ9f1df~-p#4CM@A$GmcFnM#iUI(hO{tx8o=wycENdHEqw$m(RjKC|``Mu~7)z!$A8QCOm}b zk;xF~f8iDT4x{Q?MYBHgIss`9Na0;TswJM;GQ>e3t0=H@=6xR3KNebZbL>N#wesx* z*)#=bcvvO1-8V5Yu}5`IsnI@IK2#1~t8hT&nf3Yd2!L5vY)a%UHGr&<2;5QC1cyAXx9ks(%3Z=tw#>Sp?j==U};{f7Qu5PU^cAKLfG)*s|} zlIu{=NBgbEd3)Ny(?aL@r5x~FURJPRU8W==&!;_^P&fhDMY;ljmWkRMe;+rEXo4b( z1rkKUmU!jDCGwvRb+tfU)2TIgGnv5XY`!qd+nTdpdodo3FRt@=SHZCCwA7vB7@OZR z_&@La!u~x+j`os&9wD?-FgK__4fTJaXjHw^H1HK7z<(=bx+_MGW zx1IrHK&jg^xxWx-gMQZ8Lwp;Znlqm!p-YbRLEy%|3{WQ1LM#5C3)7I#{G0}i3}^=}!Q zN!ZQ<-5lxkuMFgFWm1orB=eiB&OciiQ>r7&Fr0?=A@f+{-OFcj#H=>%31z{CU8cJ3 z_>jEj->j-i9JPOFI?p?Ggl`)vKTSlt4q->}id^UX9lkumNkmit$6U(P6-*7O&uo?G z$nXr#@Rcn+-sbNj#R#6y$k8=$Z_5%L$VwY*&rjm=>2;pm4&}MmW23P4rt2k#I;KiL zP`<((s&>+I!w)HuDu9WMpO{;HEQH74CQ1pdzaS(a-nVYpPi3cQ-O&3WmFBgyoNOiu z!gtdjpi_TZ1UK}NZ1*tqru?1 z4}3;o)K*WrrX)8z?XlL_tsTR?&vZOh{@Xp}O;v8KQP`Vvp3)s9z3xr=mud}Z&d>cp z2shF#XMsc2OVSLcyhEj{eaOaPb=Wcz_;8aWcTH#ff+tw}`t9uX_ue=-SA9a5W5@mt zVQW}^_lXr@^32Ur6EW#D#irh_y}`#uv^#9u1{i%?>N;(7%`^lGugEdZmgcp=qXPxw z3spQi-K%frc*oIS7dg7#NWj{pR?@fJr6sj~YNAGVG>xyA3x6q!a=+{pP)k{GZ1#KA zFHi7(a(%rdDMo7=J;G)Zp7{afetDe(CmqZ86;#!%>phThOH&{*`z*du-|gtxnR!c7 zlq}T?cfifBGKjf?w21xT<`}|j{-Io%@me)AH%L?Be7Hd2fZ(da zDNk3?&8h#ncN1g2NVL$@t5GAyYNsSuM0<6ix_4xcwSSq}I2QB2hOCb3-2 z%5<&{^X^X(rqE1e2+v|YL*NGUz-7dG+iHdzFW!ZlIrld~;9Re}$E`(1dd_ff z3e-hsPwkQsX6hHP0b9+p6JZqkoxN#j{#y<`3}0sR|D}rh(APYzk?okXVXC3HLl;%#YaNo_`wzm5iaxMdK27oxJ>Xs_-mVME= z9*`eC0R1tq^TLG-W_c1i%$}na`~4ewgmS?bAWZ;CLt*OTKF>f;uLNLx+=Gz7w6JG`^AfnuFF?1&H*ET8Cgm;p(~ z4`L5r!6Eh^B`laZn#CGdA9^B|j+_fh?f_IlDmTJlvf7^nX_7%Bn+XkZCq^ZtYP3Pv z0L43#bI?UcSbSMvqzenFBA^@H;O7}39cWvu3pEx*JfXrIe2hro(Ky!m7-N@Ublohu zmM)@n$9QkSI`B}*T!3nN6jwmo;SC=JH#C1`fg0aYZ;h_PjhF-O1ntue$9WQ1d2p<} zBm->dZ@Z*{U)NC!f#G@myEY<2Le7Q~$`){#zLPsbcu7w?b5>8W?{0J`C=bY3su?G$ zTaZvH5{AePFRuqK<@dMDKlU>y9Agj=)D4uswPAygoJd;T$w{P|AV~pn{cuoMe|pH? zJ41?%$adG-C4iQj%5a{K+$f69o0@%fd%r??o54@*szEt8z?9 zbL^d+(|4vVd(ep`Q+|2Xe^CCk!1`pLk5Qy$KP&(iDFh40bVrIN~!fR$GYQ%g9D)c94+7y4wV#` zZ=>|3BpYJqQ1CC{PX0gVqEnXK|25kX13LQ*41#&{KKJPVfSK5AOOIOxs0-|)X3(p6;ZRZIll3)1n4VYvRra}YZ%OyMoRIeKluXzz{Fuo3fhqVI&IDEPYSvKOE3%vhvoyVbA$H5X|4w+xr zNur-Fg6~fl#RK3km$8HfcvYnX1_~OoWdG_&`GILn!QCOiW3;AHsz8;Oi9%!?uRu5x zukKs4x97t3>N$^mum{5k<88}f&*D4)wRP`8Aznm_L=HKmSE6n?*sA1Bzx_}PDW&15 zMnUL6mC2Y>rU@uMv9DYokDpCAJZXgpGayGm^w0QcliCIli(VPg&f-jk>6LndNN;|( zJ=v)tkU11GLAumJI$pEj_mkjl>_%^gvHj8Mn=AV?5mFJ(3Au}Hj^zT}0n)0Y?z_d8 z>=Hp$pxaW!H1;m>T2*!3zp?(->Qd)rV{=XI>l8|UyKvamf zg~P3zxYM9ly52<6T&EUcO-N*l0a${v6>hSdX>TD821PAudWX_S%q=?zB2Y*5v_AF& zmzGY7VrN1?^!}AI{j{=|P8}ag2vjm9w>ApoDSJ7DrdGyVde{l5}aju|^LJwc;cYK3t6Kfe7>9O|PZ z?W0Z|nV?gUG4%Y4wcsA>H|HqN=l<|@kgeKQNXs!^UvFisa#V`QA!&3?=CS;?CGfX- zvCqaw8uz1!t$ds_>;+x}Hdp(ia1PO-$s!u&G?dt%Y>CNHWM4BHr7lKi5mnO5Dham%A>w)?MK>&GWan)*J-_TlXDeC8LO)!8OfjH9Lv26)~CBXu&+%9lod)8 zBK*f5(N+@cJRaa6{-~A%%VikF`gg(#$iDmY`>UPFs>3kt&F6=bpCE-~kYzV=`7jo{ zA_GaQK1GU=mnzmVB|lmwZ2`Rt+?^2B^=a|5x)xCf!A+K?)ZwfB>GGr9JEyh8?Rl5< zYwgG!xSqf;Iv!9Ib~5;`p{Vn{D5VugWG~z$v(>3z*D`}E~!lP z%iT`*##rMRFvkF>UkMJ5#er#v4~Ui*jS{JvvUK_QRFrlm3Q`2Ym%b15SgkTC<#Q#e z*~vu;Lu;1jkEW-&tN41T5jd=~6fIl6Havp4Qhe2;iviZ6C+^)^+fj36M73d?<}SP* zw4?XXn;83b1xlD6KVFRr9Y$Y^QyM&u`^BHE!nQ|QJhi@~Sy;h@*qy-u9+zCxw$_UD zM377kc+TOPG*5b|A!%O@Y)+M&2X34FhlUf0Q8+Qy91jG?v88M=&zOG9nd_;G%}O@zfDBwKEE?Z@B7wwBB*Y0OXS#%#51QaZl0tjjb*yKqw-AP3`r|ZCKIQo7fr$U_v^S zJ$=wo>oTc!HrqzgE0sVf2-4Vn<7v4g@v24wB1hkxM{$it2bh2V4QcCC`F?kI|A>qc z;50%*_}eQ3(U5!0y}nks8)q_YxZrM~v$NM1eeh<#yXDft>KOuHA)%q8od$!QKF_7B zkznhf%$xlqZ702)bG{o1R<1VMym@oX&pGhCtG(+-eqHTutW_Kn{n}Hsi~8%{`&bybA7S@1o*DBI(BSu z?yy;TyjW6&gHz6il4ANZVG1IVLfX1I2JNImw=ceW5#3)4>JppqDUu%pZv44`qp!oR zqRq1lfrQLzvvZKuHfvXMtoin^05)Ey|FDv7yeTiYb6eYdzn2mpU^m!ZkmGH&F#yjF z{BlMicG>2_1?!(}Ix|hG??f0164$uYOUu^LkEf6Sw2<2!JHGJ#_zZ`IeZnWfy5$9S zHdwvsK6Qq{hhi-R;O5YCVHZZ>ggpVZ7Z$^ug#8NZKY2uq@m!|p-ocdQ^-DbNqM_ED zV5{lOiTSzi?Qb`F7Y#05jB=XOpi|JKZ5cuvdHXE^oAF+{^bD1}u=|XSEq1bEjMI1h zvf^!7Y-l93RJ<7=`i_j7(D*3ZJISY79h1GmW8v%{^;lvJ8qZF#l}_(HBwuSq4xJLV zZ&id-I2c53wq}8#4Q*?WH!E$)zNa6GB*aP0E%D$9{N(FthSOsp|Mg(^%SU%1ZP2?@ zm2@Gfe3D7ZP-!WVxdaThX4L}t*u2>VlTU2Vm!AukKpx0{;Z-Z^J*Z=6@= z{sh#HpLpGYcPliBQ~l=LxQpK= zN-8v@L9?V5i90O)kNlf`%TE5VC_(9$UyWnE4;I{f8xy}gHYuJp61-7iWpA7lPey`S z2X3C7k^vLwF(bjR)8k4pbPVWx<^&_bu*3CBwobg+&9*$u$a=xtO`I2NWMvjdKR6-B zh0NxLu8vpHL2r8|HNo9E4!7(Q&OmR@BqfgyMH$Yrs3^>mO5=jpQVbT3$>xq*8=Kv1 z6+A2iyCo;!D$?SWop}Sp6d$6-7<*(nG!O3!22Li4CjxUWpZy^Rdv~%KC z9%7Va2n%MUQ$ejFiVB8XI{fOY`Zd??-Cc%y!)mZ@F5?w-KT{8%ZqgT(JcL0XX0JF` z8!z4uPPfemwFYmXP>r1;D(XM{Ul}Gc4}838eS3q$JMD!|pE-lv)7{s)(o4n|IgF5C z8FT1PdbCb^?4GEQYkO{^=aGkDib_>~w*b-eZRrg6d^%0g-tX9XE3?AZd-tREf@XoJ@QciLOv{(SGEnD@W@pe^+x|Hao{;&K2o#kt0QP0j_Y0<>(* z<{#HSVG1V$ia|Ho)w>cu=7#-xT}XT6u@^244!WA!jRIsd__g`kjVLfNz)Qu0#IHRYj9T-WY)v3Y)YatG`wrDh1+Al*4byRMrSDYfOO#p; zNa2c%#o=c&_3i3GcY>bWD&hHu^C~h;5d0StzP6;WCj}C-3I`Qbs1{)Lp=atCNV4)B zPMQxN&&9pf@5`$oA5qPqGZ?<+XXBX%YaxQ8O7-1*)VNTrw7wewMt%#Z=T7Xzm%EJ4 zI}u|X1KvYD2Pvs&$A z8nPciZZZg0&7|pr-`*X{so>23bTT^hX0!yt$|R`EX}}8JvYQ-(ZZe`F#B&=Z5W%Qj z83Fcr4>47zu_;YI$rg_l)r<@^Xd$A`EIxZ68mRDlmc+}PIJ@=pD8g(TdAcjM6W9lW z9B3Qzs;cFOhv3d=1nH_|u@J5sBHwRA?UlPP2s3J4IOT^Re6Ji>meMazMaa;Bbb-KF zG&M$tI*E@#;5A{{Zk1c%@^^oC0=b)$IXz)qGC}!Y)DGejBvpojdb()UR~q_ijnr#p zw#DD25jL2oB*3F0|H6gIXU-_cia$eF3qdg6`2aw>7=$1+f?aY=2J5Z)AB$J7$9#F4P`$1#z>a}>iLpt5elK+;8A6z%ZC_r z1esiL9H77*BuxQ0vN__3ZXT!?1;ztuy94tI&JHv;pe~dEqee$;*Y-Y*Vx{b|k^vl& z5ghtj+_hvHS!U}C1`QeUgPqr8Q*}din3jgNw6z#_6g6=)u9+PaHw19ubVDd&vzpUG z(?lrW$dJ|y;U7dMKz7Tq(xdR~lL1$E1CN{MbWpJ^Xq-?Lj%E zJ%DZwkgmwD0{w6IF<(HiEK8|y6UN*gK0FT9C@M#`Ub_x3pQzr|992Fa~$9<~Hs9`(aO zc!9ILi0MHlC{-DVoBt3L=B%>_ctKXB{lgjij zg@4cJoNeLyCrCDwbP->fj80xmj5w@l{cEkY=*AEifgSN0C}Fb)n&n9rKY-O<9g={q zm=-76&-`Y4%$x{11ha9IV{Nv@qRkfyF)+K2JJPIy@=kpRt7@-+h)E*{kmq?N)|YIP z%t-S`w;J73<-e8s@J}h-M@3S{& zG|Q(qqn4Z&EM^pTqdKvh)}TqUfiSk%B^1iua0SM}s(2v< z0voLRdKzoR?7kxV`B}&ClvF znH_&kBG?S^>$1?jWp(L9hf$XaW|UrFZu(3Ts2*V&9s=zA^5p1=AS}-o{rb@K3LtV!DoBV6#q9B}w_Cd3yS%XlBbzLGo3HdzSR2v|{T(sR#O_Su z?OnBt*f(GB*N_I|`|9;;aGwXs>xfeX8^$=YN!_~_&V1kuV%l?=wK<`vF$|hyIOxf? zk9nj@wqkq$2rb%J3V<|>V;uZafK;J$Ha}~?ATY-sazL1$Y>XZ5v1LH^d-&#;hmqmo z;blkR+z?xi!>lBVEQ)sm?TbH0wqgvod~zt$hux_gHChw?H{NCW;>Gvgw$cuS!!B*# zT3lm{+klVmOnA;-ENz!LXyI{*fb0=^iXjTH@p4?OI3S;7A_P*X(~&B$vZ?zeQ6=ra znEivL8Bl81{ed0lGhv4(?-sCD2}&Z+AF^}S9Ta3WKJhle%mZq94=XzRh2ynr*X%K5 zNQc}LeEKbf%Ob@nd+HYUpwO--f{KGe#fkhcX~!D&wS|C8mG{K0YQ#q8h9)=nknO-{ zr(UU-gGEbP|4YyF&z>{q$oExA3PJYkUtw5tQFVuWlSg#}vxgOUl%&2Hy=F2%Ymu8VHsqHIQ*k(z5~lZNN{f*c%x~^=yjb zMrm$?=`F1}imn8y8Y{yVwvS=Ne)@GhHvt1(bR-5W7l&F9Bp{{Cn00hy%f2MDBHa!80Qmo1?-57TxijOgFsU*WPDcDZlpVk$&L6| z*GgVq9^O*T5r?YKTG*=H9|L7N<^p{^8!Nl^LB%@NcCXjfE@&Y|YR?reZ4pT`c7vv5Oa zPL3@!iRa(_B>p!CiZr`${+qWpm%U7oNLWV-66l_OHi?r#ZEW)Or@c-vD^6hC`mmMYdVYE-x z(RPwW(e35QC$)vwi!YtIe$%B*SDuakdGGU&jge|{vxIv!r>K1siELc@WZ}Yf>c0(q zT=Gcn)Wv;2aI5|2qZ(ql0DFH8NPe_YVXfS(qM|cS@I>h1=v5}_mxpJC_VPNw%Z9*$Ca$&}(%fa60`avsAB)QW=Q6K##M&WtS&kC&GO zw8st_;_85>jvL<&sVL;j3L6DU_m=Ze5lTubpqT@vM-lL-%1a?Qpyh%Y?b6k&i|)1{ zaR>zWzaGBF2LKX(#QHbvj>3H;m}w#4jHf6@b3nd&oFb5b!m%C6ONVt8VS_|0lqD|_ zI%gbn>Johzt=m;Rx(nh;)uVU}>WI1oyuo$c&9Pc!=1*RXI0!Rn&~2Wa6?&BtGBqJUS=DXorw@gkhy2gKe*nviN z6TI{F1rv6A>KC_)fRt>B&)A96K{e>E9UZQvd)yy`+9e?#w=Mn0=eh)B`HIs;%oXuk z%|tp+nzh^zX~1Os2q^;*E=e;>a!r(pFC0{Kbh%Cc>Ir&>`P^IxE@wlyN-z1F^h+LH7 z1_eO`WXH$yJWvEDB4NS^ywt&tXJYd@uh8jYmgb;3u!$}Ze0Riuj)_y6M_FZi!X=Pg zKo8u-*B36_^r^1Se@Hef;Zo(uqv)vfj2c~pg;)EJh%wF!VxosWNb>HxbOt{eqQ@^j zZRT*b+V6e2HJ|sr^`O*KHxd^HNyLjV!3RIeF^bQJ=$@-N!{Iu%<$hT&#Wj!W@_aHx zt3{AX$Ykb*zS6G1krVotrwFWEGUT?=amfhXUqP!vCNkE83*WdIk|um>pS0rW`Dl`>Go3R3ZKs6KF&`|cHdl+ z-)dg&HD}HoRo`8`&YPQa7jYT)t>&Vgxe^_sWhEhncsAps^;m@QvslP2^SBY1r_^7m zR#0iHDR-&zgt{ni8o9KmWJcD&{qN279?`t5 zaAv@RUJX0-e0ECfXfPiCTq9C^X7M09qE zF%5MWO7+ji3ks!&tB8IHQfjfO=>L8Np2#(;yR62@>OT6t{n*WL(Xk5>gYL;9?%L*K zfx!x$(Xw=gRtkhnWugXW^Aeh6`abZC%qtj$sU@O<)(O}m8OsY23QR=XN@mDDtkbzA zdcR4D5~H=zNLV0Ic{YAt)9juq!h4YGD!8pJt=j-(`xB$w+T9fc9BWhO1H(&L+{%ts4*?FX|*O!3sl?s1+}z|df3(S;?w0E z?on6H+Q5Y_rOEO6=e?c^WVtn^-ZD0*n=Vbix~yZr7%z1qr={*)iK7c6vA{%>t^I6m z95yntwQXlqoV!om{WY8Rq#EUTVaBm!a%hy9-ke*U!VdTQKeqqsNNcEdZnGLAu}COF zPQ6>OhV9U`eE5P)r0a}94%g$457=UPcXPkTeET%RRBd=h=TPgW_5{XBh{H%s67|CO z;^(x587Ie)Sze6vo6k5&ydMV~n3|Xt5hno-6a2>$+NTx%U_xVZ)eC1#WwJMZM=uj` z;I=3uyKy7_i!TGus<`q0MR@(Ss54*JaAEHFPk5ZK>$E9@{38bIoT$e(_DAmdfO93f zPqO>j8L9CySYhpd*-ZY$EB+gQ^uP5K?p)wZ6krQG1&lP)T-|nh1k~CDHL>pBT(hFj zf;`LvDVT^DEb#m}@QCnwUvCTi66~;=64WqtyWdKNzAvoV4ZAQ@!UMVmlsJANAt4B8 z`H&C`Oj#}uv@N+j)cGq6cA68r6s;0@e%>wFtQOgl_`#8Wo3~^d(^8(8_hqe;QmMJ2 zJ|_#nf9pvsiPT)7c8bPJskn58nYjT$M2hP@mFP81JI&)o<4GFAT(R!v@VaigHK-2e zs|mnBXho#Ev}v^l{Oll=4E*GoK8Wq22U^%@>|K6gG)9_LwF@vN)jfOS4n$&|Cw~l} zy@z589)Ma;jzWNJ!hmu&QIZh|J`|`MI6^%c-UGpx>({RjLO^%MP@5`*_fPI?1CC4t z21NB0eE*6r&Rty$0GBXB%ofRMY{xa&2+@W}aZ|1D?r*Gi@A4rtewsBXsss{;iCjE@ z?-RYO60|tzJ)D9)F?$zAcJi|?^M8<*=8{Qp4^5H?T?HqWwrFC+ z!k@yK!v&kL=`$nkn>{le&@OQ30{E8@aU?yFc@GpZW13{saCib`1 z5sw`+FepVLz^F8U?*l{$4GlZ|1Ox>YPkh`&zLtJrH8rN1q@e2t1`-L%vu_VD=i+wH zKGmEaw9`(K-@{X3N1&YJwe$j5Dr3x(+Lqd^fZxX?fnRIyg1y*CA{VESPpB~F#t=a# z?C0Nkgg-+TmsgtS7UA4g;us`;Ja~4=&KnUd$=jCy2$w@Duz!*ds|4?!6Tg}+r{eG} z)q>o?*g0HqaKNCH8F5M)!ys)C)y(`MV+_jtwzr=i8t@O!NK<{Cj|t+>q{8;CgTRBX zR6yMJDITbnj=}PQfLa2s%{<)Q-L-aV`8mL0c&Ubl32=6}F^-1ObWc8`{|}jEGBSVG zwPnCFXPp!bo9QrtnKhww3XmaF5#Q`FRN$nuAd^dkq3%MkR>~?MjWkukDI~aw$nik) zqUjAjdGZ8hR7`2g0eF@XY^P|N#h|}?dm@I672sM>&cB<$zZ=DG{e7#{35C&2kjs1^ zghYH{QMyZ)j3!E|Aa#$_+JSt29h9&UUHrN90X6NuJdwFEucPG*Ivz51a(5s#wJxqVn*;S^s!W7?Of2-#P@vADX+h3SS2u0%1YEFWK}Tu6 zm|*#Z%{!L7-VYg-o9V;FaDyZ;SV4BR4RAOd33c~m87orSp!Nip%O6oO5H}e3!9gy` z?%6ci2XrIiCIuo#YETj-Xj+4T7aO-r>moG9tn`$)wkr1Z7h#L{5OMSHcib+krr{Rx zDMsDcg5GI_wvXpT-luZjB>=L>BbhHcj5)HVE^b0ObWmFv(-3AQTZ z&>!W@w{G67+}n=fL`r81f<``ypVpbx&}bX-mBW+C-Lx$q|j$_~heOWwSTu^!G$A{}$aYiYnk z;P^VZig!xLyMiuzUxVbg?lkAXD9FZL%E^4*+x)zSf{?&&!^a~dBXwwuuZI38EuD4e zgYmq4{!=5~hjckr)wG?yY-?RrEaS>-%M=wv8cHf!RvCY%)<@OXpreYYjcdhNP`}Nk z800R4xIzqe?w zix3d(`gdL+B;$AVe){PmdGF^Kd{K^WNsK&leZ)q@@S)``Qb$==rY0h8fOzn1LrX5L zIYO-GP2p9=Ym77$W?OwFPwX>LVwS4@&8X~~M%h})nHT4+*$L~ILJ&P{blx_h(t3mI zV?|_l+W=b7o|oT;yr`}=A!~h^NX**F7(H*zJiS9O>;vz{Plo)2NQ{Sm8CC`n0AT$q zyl4*I7#<>{Nk+%Ws=@?8h5{NWHVy3L_rABB>)-Fj9_v}?w|K`xcp6Zyly46?@Ya68 zW?LUo8@m1s6$~`G#Pg1y70Q1+UDoZWY(+2jHRTPrAW3S%4Xa1`d+ZpRchtT$h6(NV z0v3ys_;tw)W?NlOSH(PMCv(A5O%7wAeq~ZujYFh05&ixNhkfz1Km;jR`H_J=j1$of zQ+kA$TK8`Rwg5|krTs?m@#~iK+BblCO&Ayyf$DIORmpYx__yyRjXt%S$S?KZDI*R9 z7Fbj>Y8!&BVa7wWeG2A4l+n-rISy^hzEE-*v^ImNoroBKo%u6t=2;=ly9VfL$dwC$ zlwp_;jbPsDiWN{1HW@j}Dq;o^bjl4Ob)v0|CO#r!QhIQQ1nZiTy+|P==GA}ZJ9jFk zdD;1BoeiCL*W7*s_5JuDh;|Xc*?~4}eH*buD@ufkav~)T6zVhF-_oTGq#F0m5JIP_z^t>2=a)U&mZwkda=r=yZ0b*vs79gGTSd&i)g#ymXu56Vae)16>wfNM zLgN5yG?Eh-*0AQVbigH1D54#810EpZoV=MJpSZZ>G$qtrAENMF`k-tDz*~?Uwv+z|U>Meg4AYshJFsdYiUt8;s3Pt_!?7H` zHbhFGOKGh!29u8D!iH*vu74`+DWeexGC3$w4ji#UaKS})B$vR0CGq5!gKC{Gz9Y^E zbO``EWg;Jb@j@rjgd34yqUL(oW#Y?SK#jTauKgrUD`=`mnp{$yL15!A^Zd_0E#ZGd zZ%oSN({ysH!)>=>O9PO=C{Zvb?vod(PWW zJdRDdnQ}fr3AGw#+mIQXnVM`!ASB`O^6UJ|ALy-9f(Vs1KmjQ{5RKVSDK9%Q*!RDD zxwhyxbudf5z9zjdEU9WF_QQ%&OiD@kqU`r)H}VdxR~#KJG7WN=lD*Rc{GKT?td9dSt#e!uVPT2`=POWNUDzN-==Xu9+9lE@XPL3JSDQ7?6GQ zOiT|@hKfqA)j@0A=TyQTsqph@JXal<*5FcTBDxIuwBbXcj?V;1qe;>160>rt0MFG9 zLn87ctBPYEWBkO~OB(apze6B@p%Glb=g77L1NX6!=n!i4Tf8aoWeF*=ZrI$N?IRAtu{adeM{u5SMKnw^b*@G!> zQ>(JiuFVZrSGwZ283lWx%%*@LY;#&5Bapqho<&ZC=G=dP3A=8ya=?!HKI+U~q$L0s z>Os`Qax|po74QLTw(Nk3XEcxrxeBv`2PG@2P(*phDAkk_mxEyQrAxP=+awKXy3t~K z6Iz>adXW{dOcTx7Zd{lL9zpF`VXiDEmv5eeRktoT@)ZCQlJ=6J*TYoqIo#}IV5C`u z_6JlNvPTKgc z3XluN^D+5NqE|}LUFFmwpBJ`F(Ws$xpL+$;(bYt<6Q3LH?^UbcIJZqd-rw;vK`?a! zoS{)PpJdMyR&=5WBE{cjDo^ChC-4cPuo#=TleOmJ6CdugptVbF#s=)!$ zdf_CH?*WN}@yJ^uEF@Z&Y$t~;)Lq1t4K(X*D%nAQ7Rw)HXM=-6YJ21w6=Mfp7v=2e z;u`En##s2a329%tun`Akph5i635;1JZvHwlh`P`k5QQsDAE+7oVedUIaHPw6<dn@GT54w8(O$idhRQ`F*vGDe9wNVa7;oe=NE(bj%_jV*D9Do2ex3fmUAAo6L}sdTmrGIDk^cjTsW+(v#<*$E(18}dJO-#xs20QO zV}<6VsZ#^=%KH(1(&vbCpprXj$`m$Ai+tXR^^UP*?oGp^#$!Pd`8|=_0F*sMov~Hy zEXrS-;)q@FfcyRBp{Opl!S3+gq9ODjpsUi6e?V8|?VoU`RK8&xrMA@M6Z4W%eDALV z+XXjg+IzCw07r#p+qea35boQ9@t%Hg4pswsZ2lDSi$6)cH^MW}{_H`E&Btmye@LbJ z8UcS)k<&&7NXRb?BGATb7Qt_DQ2@1Fx%ImaG@&J0YbrmTY=a@mZB%=Zq&I4lyTs$( z{g0vh^b4bk@oN0Sx)g>P=K`#}mFsF?;F!M})eS(}%ZMw$h|dv9TAP-4_lajZOH#7s z+v9o-2X4ey!*`Fc!JgI%1At)nWmuq6VN?S_A9ONc_QI!z5qwVSLVfRL?b9+D0~_bb z9g!^HYebFK3SO5|)S%yhYZ&AjM}<)XK*S3-dVeM`vBX+`)22=S1vK(0T&wUmwB;Pz z_EK9h206a|uvS3HkrET%Cd3OKgno$(@UZ&WU_}7&)K3OC?)}^b@AKz($UYWqZf}=N_Uk|afqO7;-rEh(7zq9CZXJHMh$X2W(+0xZPY4&ZlArm=O2dNT~%tVPTuPc zc!$MUWA227!RrNF?hIWbTPwS27BAK=SPgg>s|!-Zz`2gz6HDIw;587TcDt;oN=w7; zxAyx0pi$ok4_t7VULIOSrNnP6MIQI{9%xR;kspPDEI>;%pQHd!NwDr3#3_l_-b|5q zn!4y6p+g{=1TO5){szX8U$4htx*qM0WNTk5b+Szu+418pRQ z{d569WdN9pSh$#5fYh;{kOx1{$qc#ap!`*paPDQ{HAj^<`yfxsvqMuXt zs`QjLI08)&5~9oldaLv;x*)n8D9Agd!6^ColP}3&WPMqys#?+N>Si=NJp9n~$!R;2 z5X%Q;O^z)|;SE-{SNAN2v+16OgZK9y2zd7NspKVlJG*u3qIKCfp~BC(d=x5`x}=mLq8`ZVT-HBLh>P`-ms01}U zU|J9X5Tm*aaUy*C5?FwHh!;JMD7W@v=0x(8iyTH*D<74K@r+1vDs}IwJT#%6=)5Ts$ z?jEFQ;%AN~?z|KTw^hx{ODI?jE=<2aKllba50p=0Rwx{(PC~y59Ymwk>ExiOe3$(! z<;4b!a~f6n*aEAq)A2-jCt-1gf6WUqZ?rU%NLzZy4RRDT42zoAi|$LK)AAdtn! zMmM*_V)Z254|&hDme;j5v46Qq2OR~PuEZ0yTTobmY?)nAVpWXxf|zw6x3fSwXc$+w zXozre^$Q3H%tT$#8l~Wh-UKu@)1}1GVieZ?0mey2fY)d;0e4B4k8COp7eQn zsMCqj8-vj zqsQ$pXYcZ)=!WDi2Qf&rvOlTa7TWbP^FS*U8{2`9gMvV21w_dOr2czmW+p*qv?BST zXrXNtj!(@5#?mg%Y7;3H2^?S@(nvzhN7=D?aGgUF1>mR<6(9PDa4bHwlw!NybNu){ zDyj+Q1=c6)e53q8AUIg`MscB;_yiZs*DLmpS4;*Os-T3RnhxRksT|8+vc1fWDuDx) zpl`z{nnVYL@8d5l)`a}!G6;s$Wx~{YHzwM;SWS#1asZ5!;u$1pA>(@767~bGPfyRfdiG$jjT!uK2Ll`f>x6LL%bR7A-HI5A`to;lq4D^`FKoF57l!AC0< zXdXXLXSd^RYhlh?X=rTqu8J_nLB zABddr?tQn@|2V36^u-K1;aR^(JQU$-NmS`8eynutivK(i>>wZKi(7$a955pc0Lh0W z@HCoz|86YXTZ*xqXg=?Qf8{{DVtgYty3i+8WLcF$K=cLNF zX5w%^v5ro-KQybgIZlL^CLJ1=!Hzms1`+kHBDDL^IQdex>A@>6(dTsLe*Ccc1K-(y-KM|(Y&n7W-h7PyFr$)2Xk7YE&a{$_ll#- z_dD?gL!-8+FQh+I6I?I>Z$$B~7uX6^YJqgy_N~A>FSk`QdD+Jz(Z-X1KKhQ2L8196 z&7JMXLN2ro8q5?Ztf3xrUF~iTFI?2VVT%VC)mUn%XF)R(xRBF(za@Xhgw%P9xMoR| zg$HkaQa0KeOwjtNEN!^gQTKV}aHV3W+Q@8X18oqY>j0J>IrGrdrl>L_;r?)b1>kBh za&kmGL%+Fy{^XwMlKc6i8pgfOWjSpDl^@jT?Qi+WpC%I7oSnHEH}AmEP}h1X%Y)dP zYsb=JQYFeaw$s>2TocsJo-dq=foGW^CT9+bGwFX86vP)zyZ31P=AEft=Gq(93`-gz z!NTqD%HPd_i7N)$7`48m220J>+X1 z(}KFRt_M$QQ-8?+&bz5eZ2nV{EYISn0JYWYaH9k_3MB6MM7-> zx7FPIaMOz?XH=5Cyb?nUdz&?I6;#9v#9Go2(DV@4r^VrM@Ve?T-&NlIdI_HHlBUA@ z`Pz4{nr6*guBkYQ4x1^yh^yIOt6#q|n7N5yxuohNx=wdDdv?zhPG6$>_KyXAyA_Ui zXi4FcZy&DU>z9n*hPLi1OvH|Qqz=A#xJ_Xu6OSz@^*8gMmrliN7G}BIeVdhAFA!0( z$wUe4`}9|bR%s>!FG5T{wG&T8ZN0yR5~oWa0w%zN?spk1ZP z{P&qA@Jsb0gOB+t$GKzslXh-Ama-W$72~*Nyr#}OeY6p08A_Oo@dgWHw~DoDY7&>I zqBR8t?e(Chck!vg+fKqmbA4SYDxpmO;L+Plb`C$N8XTJETk~XhUzO_mm&?)|dF{LD z24eJ{S_m+<)wgV%QH$I=W^`vLEc}jD|Iwt9rOa<(1$*41u$!h<_SVmf=STd+w3YSe zYSR&%19QKszM;XOuCfmY8!06*^TXi>w?&8+Ce{CTBb-cpyr-t@du{koXMg$h5u1@Y zeqqt^ZMRUbtY80R{dPoa=Qq=($5;kUWJWJ}Jk8AAz-VL+hOByGok()a3ym{x1GWg? zuwf%2rxql}k4Rz8YrIA*ZS&avv2&ioKWZ8DeZIBBFfpo6g}ss_GPg`;6#nesUCy}_ zZO@NW(R;afaOX|c=5AnY>e=to+LtA@y&X$BaBbf;U-O|zP#bomv7>O_E!pvt#MVS_ z{&gB!BPhnt_=R2hbf~A<*~q6^P{GN8EOMB2d<=QK?|BtS`ADtVX|XfdL3O(6Hp>Xt zKeMeXEka8A#b>?dOgp9&Xb6R3^T{I%T&KNXw|9+I_#&&L`$KMaM8eX$$^djnoH zb{c-~#y-vVzYe{g2{HSwU0bzv)5$amMh5qAZtkmYCq;Vt#vgxT zj(@6I-*cfk_Fl(vY#b{e;$QmqI}tHg_D}O}iPsx4Q`@TLH6>P_ytio4caIOu%SvAL z!|Xd?HuQ(kx>C4u3fL=m7BW7xFyT$iJ^Zy#+_Hrpz(fDzgRyBft&^CQavB<5iO1&M z`R(3uY*o!0?ryg5Qorr@ZS?pEQ$ZPrn|}AGgX%f&bE*N)zFV|dQzJyVF;zr?z7Eduga_$-jkRc7#)=CNI?PWihM9O>OF-)pG2%EjOz0cngXi|l=7t{%>tYU znT;mFfB<5F8IXLFQpZuz1ObQv3l+95zt~j{-G%`-q%t{na7ls%PzjI?VKsb=__{IS zWST(L?0+b4kQ<{uxQ*g=)V!>^y1LE<*ma%j1R=16 zFmHD>a%2x_-Qj+w28J)dS)+-LWmkbIWVBHgwGR;4=U~I7))qer+&{i4^U7C#l4P*5 zfrW}T2JJOvmXIQ!7Ap9ugE8yslZU=2iE`&?;sgq)YsV82$~N2=TdJ~-sw#$w%K1%= z)O#ear@1?s70t6vzXf0@5|kNOmnEY%G^kCGH%^ZrmlH2|&4a6Juz2C_W|DT`%5xO zc}}y`p3T;5!kibXkL^ew&wrP+U&e>Lr2smI*=XZ@V3 z>P|p|ibu;8ND6-VK}wY`dun*$Q)V%1VH6palz^0hc+j&qpf;*vCBh8XQHU<%d!|nW zFx9j|b4DkZyx}P4hCoWVj>luNrVoA>B{Y$*GuYre$$XuX&-un~EM$UyyC-vOD0BZk z)AcEx2yWJwzd`5|I*!$c#QuNi;f&Q;eFPJA_=Oack0~*k4HId}4{Y!SRsa+yOZzIT^U2Yy_L|%JYL?cGj`iM8|I*1bIMDhyjF!==eU{kaT(Kw&MVC zf*vE6hZ0V7_b&DwSU>6DWPy>C2=Cp;!<~6`k7#$lHNG1Zt8L8Zm?rL@HEo(Scptz8 z5w$=;2zsWbp#(Nzrtg+^fqkLkW&fs}R0)s*astiDM*9I|3EH#WF_WJCcR}8)Iqm7M zE6o7<^)E|1GIr~_dSN%1%P@=aANu{1Q(4>}Ip+G0h>d9}JB9WM`nvt~zW7&{l{EWI zTzLe1mIDbQ5b>lbqN%FlXtg)B1g|1=7yBV{Oa7;rBG^!Xu;0ZTcZVOWIdr^udu0FPwXW#mahjwLjjClm)%b{$B59!ruGkYTjvu44Ay zGd%^a`a}5Pk~wb0;v{I+0Q({lWnFEQ6l=O;*8+7dn8eu*l)2K!O-faD7)3GA3V}$FTv2#Das-|44u)m!E*s%859m{ zh%bt2l_tiJNEz2AygvMZMmX3ve6ls@AhRsQ6GXDcY}>2O+?H+E@byxf6Z*|UnF-%H z|Mp?g^mjr_pU?JMHoJm%hP!_0!=hzd)}L#<^2^3V-;(u(#)TVpNiW+YcXQ`@E$pKhpGgfzGXl-=}D zZ&0=XqM?U6g1q-A7>^KsnsDRZ(1jZfz#sm{N0~jbwvm_*($XT9b8KD2U|@Mmj>8rI_<+uHhf&(s8kpOREs(xUnV)AcEB)tirN6M5n8}l_kN<#q zc=I=5=Eg0-X;a)w=^dFYS}3qs zu=JQ2NRMRgK{~2NjNo?xZ>orq&-#3o-BkLQtPteYXB3LqO*(EUnhWM+464e{7$g?m zP`1~DqZ^ptQCfon7hk+>V1A~fC``XMg()vbxrs_DoXQVkS&`j0kVFD9iBbT6_%QD$ z!xX*tSFkb;EF7$`#-z-VSYm3@v`MRc6!NJ=Y`>H}0+*{jpmCx=p3(Bv?PK#^h`}wo zBtpt;ULWBRjUFV2!4G0yOJSvtZHMjE~^J zLZdk%2LJJggs1eA!w<+=j?D1B)aFoidsD;9nB3*#4y62naZXaJ9P+m*(H3)Y$O8gQ zrN#qIwXS05>S5@lW73{7kX_N*+%~FY92XyN09Ucl9m3NNBh~f#@J!QMb7!yC^w-l& zh3V3{D1F3&NgmqJ)*k4}%s(UF?xD_>I|Uo0n1|i3Bu#obW>$?BoDe#(+%vz4Fc}}c zO_+YvNeFzBYY||)^6P)Z>pThRQ-cZ|HJ01YbC|VV4rk?i6 zXym<#%>Kc;N{GSZ;^eYQn2FyzIy%MP5!zv;KNzofW@#|Q<7b5g=N?kmFw zXRz?j((-l8Z|;*h6799=RVTCB+g#d4x7+P=%1IGpjy|g#icVSGmoa6~LwTq@&n>8r z(6);*OF3L=g*An?$F6_!K<3)o^a+d)f8-ifkxbT_pRwx(O{h7RS-*kN)Cy=FTKkbwFDU66lb@II@PidCjae_A$}-1uDy6GkQc^e?Z%0pcd^&osOqVL2$5XOKB_kW>y4hZGs}Pn>7g{yVQp<#XdF!mw)yxf-ASAAZ6ji?ubdT#2 z*$|%CCt|6|x>0SI#ymVUnbHZv`8^WgZ@$&9k59XM4uYOIY;m1a9*L*HEd5-ifr(nI2kroipv1X<1di zMxhmg(^Ni4EW*P~tA1LVP}U4*lMdzEVrMmk8|WA-CR;JnBK9#=gB>IQxBIa6s#s1C ze!?@IJTQf4dX^bIc#mk8vgOWSLl;YHwM13SU$_URLrRZDk+%=N;f{#VG#&i}1_+ zj;1RR%h2c+%V}bneR;x7-_v}yM-d3G6k)*Tp;`(;K}6j*CqTS%!k2Rhcp4Hy+7dkA zndo~I-YZ*H=FttxNJo@=0PlG*T~inHad5mF6MjG>k-3_pVu`s2h<#e+Uk(ARpw~np zWw`&?3l|k{-{bD=d+oz7cc5)h4nVPyr)0~?qD-;9k3<-fuc9!y0=GIG^85R001hw{ zp1Qa4R!yV$(=Yu&Lz(PL^vC0%^DWwL7JODMn79@OyJ2@v@jS+0w+#cG4Sqw-`41q) zBtM+32oD+U&(TnFy9+BuD>!SqHr#Y3H#%@1P)9!e{Eo8MU_5I8(^ZT-q0jm(E zY~!rOLia1c;l+pd5FxnnIW>7-h^GlKl-LzCiN%C(8FnyC#vZyNx~`}X{(AI5gD$s2 z_g51!?LOug^lnIj`e4}y`34~qpyXbEIO9S&t0 zO>AC%Vem;I2#DTYt?~~ZYBxw!0=fznj5~ZN4-R|tQOvC1!Y#kThHf36j#b}kCM@29 z!L*xQ>!cII#>X@i9ife>t2&ohe%?&fd#u{ zC?6dGhVE~OlLO^%PAw|kzUHe-e!3b8ZV~0FQ_ZVy0tV7TaqJeJiFK{w>GP}2E~(Xv za~m2OZ1DaN_wW|Dk&GrR0m-;>enApnR#RiBtU#dCb*&-EsXH>Ef+0RCD0G;J`C%YM znc0|6F8=HNG){vn08^zNTP?+aQ`H3hZtC$5r}Jt@tC&Iq3}N|DSvYppYdwZ^9UnxX z3<#nx;+-G>T#9A|X#^uM)iuEFBohh7x@S_!evQF5mt-`7_Y{%i8e)9Gf&j#12q1vX z>{RcgwH6!=8k{AX0JvR|fu@IaW-#5FiBJib_L@CRJQpQDD)2qXU4(_ zRW!#AJ?iDw{7aSTE~}+ITtB+cu2!EBs{CQkUw>#ac{356CGzL;q>&haW)|};9H62s z`{XiuTF*+)={odbH|Xpnw=kD>r4ItWx#3cw=&etH4G=kFfadQp5~ zW3$zmQ}6YRviLrjPpDx1({8OeBNX{z>In38$WXSAZa$U|i4a9i!T^g3YSM%iuVmD{ zM$=^)@eJP)C+O`{`u)&m;zdZjxkWaE{pFM;gTB zHwO)oA^sNE$zsLfrj1yc$UHc$Ep-Q_z>!W8>^@Y-|9sqF1cOy~!X@SeQ{z6DSKPhD zEqJZS1oAK?Rxogyq|l;zEUn4`fXm2sn55_skbmiiUbud5Rf>H$o5oHFHt?5*IvBw% zpC*2DBi^9TVM_2L*e}1F9{e8kcan}0r--Zxbe~;3TRmLA=9J5H_j_O`ZSDUNiRt9v zM#LVh#)~xxWOK4%5be+)iOP5Eck1ubyy6J0X}{RcSEDcuKLIYLZNN{ z({r(z4Ra@e1{IU=;DO^nr+Gj36HR-F-xkC!AK`%~=h z)b1aE&aI!087UiNp+V?7^ko#`gorBAX#fNp1P3n$W)%~<6FWY^Yu)wJ?_0acsT>$H zg>>VFhPxX{NihD&$@uGXy?|mwq-}OTyGu&1aExGm7Epz$jW?SA3g_f4ZBIL!NuF;& zoSJ|;N9;H?10-sUEYY@|Pi4orE7P48FjD|XKrl`DkT@9|ji%oC6JDm+_x(1Fx2g+E z+vGXqe+E|2+~M=LIy>zsG7hhMOO7pkrqBisri(?#f^57*iUM1UJmscQF@`UmGhir? z^sZOVMuzpD+t~*v%Ha+GmFq37nUDl1mX*SG1cXCnp>e6#G)eD?3^CG35)7??Yg1%6 z1#~OjC2SBguWzoJbC(4>&?564_p3n1}!>BoF?rSj|bfTiqIu zq^0K?j%$$ZO(qn^ea%olU}W;Pr5AjmjLoc>7TPSltPC<)t>8K6hvIUH6>`BzLxfXJ z37$B>^PgUgVFgNbAL!hZWRFTlIF#BT6zS%_Fw)>j;=b7f5s>f{@lb3$7|>clwh053 zBIw2+V)xn8w;Dyn4+oNUAO^mL&E+mGItUAzAtl;{1(KXL0HkWN&xhuKY&I~TaXQNo z85p!Ia@qjgX$fqQq%AV&^>$*x3Q{^6gnOf>L1Szmux>u&VPRN#Mo3$5Vb*d=Iag{7 zkBiH1sQty)w-jq1eR`1WE~&tzD;8rVTx3bTi`ff7=x+<maU_Sp zqK!I$Sdf={v8Ud~iNjr`T<%oAL!)XKZ|5zha?!-%BR2x%3d!Ilc94n-H5`#!Gt1fD z;%vY|0UnlK9V%Tw^M(N;AsbjiHNiI1!$p8q4Pr}J>-@Q=50Lr~C4Bx4>#NhJO@Gtz zZQzwFmH;(eq3R;OFIm}P(~>LjfwKutjASze+dYv-Ei$@mC!_j-`tz%;F%5XYN7gek zipBGqFq85ecaWYqAB78$0^;gY`5zP{8~I@lGm0gU@)0Ro59DxwmWWpzjep&=7WWk8 zWkF5!sfsDLfl>V4rsg$~bJGW${zo~j`GzqCe6lq}%GIUgIEE!>=fU5eVm%WK^ znc;>3>6GsLuco*t12z3J`ae#_$TRQ9*OgKN?(J^XlTV7`(tksq@IJQg8?gtZx^&&G zJ(5ug2#GQ%NFsy+liU=vkHTLP9-I*I?!>3kQ+`Q8EVj%XHutRof2ZBiJ z!p}d;()R3}0n@3Ha1XG1%UVRgpreVz*3@L{HFO=JgEUTV#+_RZZIg6f51n^v1W;w` zqnF_ME|)EyaQ5Jz(_W4~Lj6%&pbc)r-wT=R&%M`|g$;yEL&o7kEeT1yESX6^CgFALiBF7`A)= zeTVcC<01S(vk1L!3B-ES3;yt{^Uh6i8%$6CFK-NW AX#fBK 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()); From d2027d7421a19f3f458f252733757cb7e9f80dbb Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Tue, 17 Dec 2024 12:18:30 +0100 Subject: [PATCH 29/54] fix: apply padding only to width resizer preview JIRA: LX-599 risk: low --- .../dragAndDrop/DragLayerPreview/WidthResizerDragPreview.tsx | 2 +- libs/sdk-ui-dashboard/styles/scss/resizing.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 84c57f9d02e..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 @@ -62,7 +62,7 @@ export function WidthResizerDragPreview(props: WidthResizerDragPreviewProps) { return (
diff --git a/libs/sdk-ui-dashboard/styles/scss/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index bc5393a412e..6cd6e1324a7 100644 --- a/libs/sdk-ui-dashboard/styles/scss/resizing.scss +++ b/libs/sdk-ui-dashboard/styles/scss/resizing.scss @@ -200,7 +200,7 @@ ); } -.gd-grid-layout-resizer-drag-preview { +.gd-grid-layout-width-resizer-drag-preview { padding: 0 0 0 30px; } From 7f764d7f4ae09d00fa2e9deccabc0d07d4ab1d20 Mon Sep 17 00:00:00 2001 From: git-action Date: Tue, 17 Dec 2024 11:46:45 +0000 Subject: [PATCH 30/54] chore: bump versions to 10.18.0-alpha.9 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 5127aee0bb4..5783741ca71 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 2fddbd7932f..f129dffda77 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index f7705ef3b18..94a7c9e5a82 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index eedbb196899..74cf4433d24 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index fc3d04d3d26..90dc7a3c33c 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 0e9d2346bd2..260744c51c7 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index dec6a1c6f36..339760ad048 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 781ac3338a8..8ceef25aa04 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index c3defa740ef..f5166e0d53a 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 5a91ac8ce13..40c81ac354e 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 4b0e8c9ab77..36967f1bf4b 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 591429b245c..49a75796f07 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index ec891d028f0..d2916587e2e 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index f8a70c400db..730cd1826c1 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index a0c606a096b..12691e2e844 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 89665dc5cb2..b793cb397ae 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index a2f6f547acb..dfc3d7a1b83 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 6436845df87..c0bbc967a7c 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index c963179d529..3efa43fb0b5 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 87b526745df..98507fb0d21 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 349f4927772..693ce42a31f 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 406316357f1..cdefbe6fe80 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index c40c0836466..8329170c72b 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 9764527966a..bae6b9e6b7e 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index c7e577ec489..8688e7c1131 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index b7e297d19fe..16f78608562 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 6a057aa45a9..959accd4e28 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 8bb4acd308d..27c3c85f1c9 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 81117eae15e..89650464897 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 561a43ad120..e691e9dad96 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index e3786e03773..d313cab2670 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 007574dd555..4587a7bf8a7 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 6ab59f7aa7b..1e9053c41ab 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 68cab2a7b28..e45bdf4575f 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 70c2ab930ab..80102bbdb59 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index a8b840c69a5..bd39b5f5268 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 224eecbbe2e..e42bed32a1f 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 5cd0c0be63a..e1e33937cd8 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index c152a23bc0f..8338ec81f77 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 6b075bf4c4e..cc63c984ddd 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 39c5f9c4784..838c525d0ae 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 0aea467cdaf..c260b036343 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 19ede4395a1..7bf5e73ac6a 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index cceeff74f20..c19805e6fda 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.8", + "version": "10.18.0-alpha.9", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 6a49bde0f24cb5eb7dd9070139371c08858554ac Mon Sep 17 00:00:00 2001 From: NestorEncinas Date: Tue, 17 Dec 2024 12:08:01 +0100 Subject: [PATCH 31/54] fix: validate custom date filter config granularities risk: low JIRA: LX-706 --- .../fromBackend/DateFilterConfigurationConverter.ts | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts b/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts index 3f8f973b8b3..c103d888e3e 100644 --- a/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts +++ b/libs/sdk-backend-tiger/src/convertors/fromBackend/DateFilterConfigurationConverter.ts @@ -10,6 +10,7 @@ import { DateFilterGranularity, DateString, idRef, + isDateFilterGranularity, } from "@gooddata/sdk-model"; export const DefaultDateFilterConfig: IDateFilterConfig = { @@ -310,9 +311,17 @@ const convertAbsoluteForm = (absoluteForm: IDateFilterBase): IAbsoluteDateFilter 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, + availableGranularities: validGranularities, ...other, }; }; From 843138ed3ac166039b192321ad5075984315919a Mon Sep 17 00:00:00 2001 From: git-action Date: Tue, 17 Dec 2024 12:52:45 +0000 Subject: [PATCH 32/54] chore: bump versions to 10.18.0-alpha.10 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 5783741ca71..60bd5766435 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index f129dffda77..cfb391965e0 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 94a7c9e5a82..3ec4e3f5b9c 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 74cf4433d24..ca6ca719af9 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 90dc7a3c33c..0306ff11d1e 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 260744c51c7..5ed921501f3 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 339760ad048..4c110b39a27 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 8ceef25aa04..7c093449c56 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index f5166e0d53a..3342283fe10 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 40c81ac354e..408eb75cba9 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 36967f1bf4b..8ca17175dc6 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 49a75796f07..79a80357d18 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index d2916587e2e..2cc615d97e5 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 730cd1826c1..def90cc5979 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 12691e2e844..fac8d96cf61 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index b793cb397ae..09d4ce20770 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index dfc3d7a1b83..27cafba6fb0 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index c0bbc967a7c..4b7b46e2e89 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 3efa43fb0b5..c5ff1bc3a9b 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 98507fb0d21..977cd52aec9 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 693ce42a31f..fba36d03b41 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index cdefbe6fe80..45f30756276 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 8329170c72b..ff383616d04 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index bae6b9e6b7e..2fa5bcbbb45 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 8688e7c1131..fae7ce36777 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 16f78608562..486cc256906 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 959accd4e28..397d045e7fe 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 27c3c85f1c9..3b38cc8cc02 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 89650464897..7382501db41 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index e691e9dad96..b8c9796673d 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index d313cab2670..30ee75a0805 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 4587a7bf8a7..76a361c5a77 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 1e9053c41ab..4b774290474 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index e45bdf4575f..692bfc766a3 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 80102bbdb59..693cc4a4c23 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index bd39b5f5268..b5d25348076 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index e42bed32a1f..d9c7b1cc10f 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index e1e33937cd8..7e61d33b821 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 8338ec81f77..6674d93835a 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index cc63c984ddd..4a9bebda421 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 838c525d0ae..c3ebcdf4171 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index c260b036343..f9b76288f25 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 7bf5e73ac6a..9269e224594 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index c19805e6fda..3f3f2638313 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.9", + "version": "10.18.0-alpha.10", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 1b675316863618f32c21a301eb1e81458f753203 Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Tue, 17 Dec 2024 19:15:55 +0100 Subject: [PATCH 33/54] fix: resize overlay without rounded corners for nested layout risk: low --- .../presentation/flexibleLayout/DashboardLayoutWidget.tsx | 1 + .../flexibleLayout/dragAndDrop/Resize/ResizeOverlay.tsx | 3 +++ libs/sdk-ui-dashboard/styles/scss/resizing.scss | 7 +++++++ 3 files changed, 11 insertions(+) diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx index 5425259b1aa..6fc8796add8 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/DashboardLayoutWidget.tsx @@ -240,6 +240,7 @@ export const DashboardLayoutWidget: IDashboardLayoutWidgetRenderer< isResizingColumnOrRow={isResizingColumnOrRow} reachedWidthLimit={widthLimitReached} reachedHeightLimit={heightLimitReached} + isOverNestedLayout={isNestedLayout} /> ) : null} {canShowHotspot && !isAnyPlaceholderWidget(widget) ? ( 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/styles/scss/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index 6cd6e1324a7..b6b9bbb09fe 100644 --- a/libs/sdk-ui-dashboard/styles/scss/resizing.scss +++ b/libs/sdk-ui-dashboard/styles/scss/resizing.scss @@ -149,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 { @@ -281,6 +287,7 @@ .gd-fluidlayout-width-resizer__container { background: variables.$gd-dashboards-content-backgroundColor; + width: 100%; } .dash-height-resizer-hotspot { From d62b9336e69b26ef3590e5276f0fb30af104426e Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Tue, 17 Dec 2024 19:18:24 +0100 Subject: [PATCH 34/54] fix: correct calculation of remaining columns in nested layout JIRA: LX-710 risk: low --- .../flexibleLayout/facade/interfaces.ts | 2 +- .../dashboard/flexibleLayout/facade/items.ts | 14 ++++---- .../DashboardLayoutSection.tsx | 36 +++++++++---------- .../DefaultFlexibleDashboardLayout.tsx | 11 ++---- .../flexibleLayout/rowEndHotspotHelper.ts | 3 +- 5 files changed, 30 insertions(+), 36 deletions(-) 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/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/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; } From 5a6bd62cd9f376b1ec8723034ff489b3f4793e94 Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Tue, 17 Dec 2024 19:31:11 +0100 Subject: [PATCH 35/54] fix: tweak position of height resizer risk: low --- libs/sdk-ui-dashboard/styles/scss/resizing.scss | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/sdk-ui-dashboard/styles/scss/resizing.scss b/libs/sdk-ui-dashboard/styles/scss/resizing.scss index b6b9bbb09fe..f8679991ca4 100644 --- a/libs/sdk-ui-dashboard/styles/scss/resizing.scss +++ b/libs/sdk-ui-dashboard/styles/scss/resizing.scss @@ -231,7 +231,7 @@ } .dash-height-resizer-container { - position: unset; + position: relative; right: unset; bottom: unset; left: unset; @@ -291,7 +291,8 @@ } .dash-height-resizer-hotspot { - position: unset; + position: absolute; + bottom: -10px; display: flex; } .gd-hover-detector { From c49aff9ce0ff4cc42ac76353b8f6618bf2fc2cb8 Mon Sep 17 00:00:00 2001 From: huyenthanh09 Date: Mon, 16 Dec 2024 15:44:45 +0700 Subject: [PATCH 36/54] ci: adding slack notification after running JIRA: QA-23600 risk: nonprod --- .../workflows/checklist-cypress-ui-test.yaml | 4 ++ .../checklist-integrated-staging.yaml | 45 ++++++++++++++++--- 2 files changed, 43 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checklist-cypress-ui-test.yaml b/.github/workflows/checklist-cypress-ui-test.yaml index 9ce1ce26422..9374b8e40f4 100644 --- a/.github/workflows/checklist-cypress-ui-test.yaml +++ b/.github/workflows/checklist-cypress-ui-test.yaml @@ -12,6 +12,7 @@ on: TEST_BACKEND: default: 'https://checklist.staging.stg11.panther.intgdc.com' required: true + type: string TIGER_DATASOURCES_NAME: description: 'Tiger DS name' default: 'vertica_staging-goodsales' @@ -95,6 +96,9 @@ jobs: runs-on: group: infra1-runners-arc labels: runners-rxa-xlarge + permissions: + contents: read + id-token: write steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/checklist-integrated-staging.yaml b/.github/workflows/checklist-integrated-staging.yaml index 430bd667435..ca360ee40af 100644 --- a/.github/workflows/checklist-integrated-staging.yaml +++ b/.github/workflows/checklist-integrated-staging.yaml @@ -2,8 +2,6 @@ name: Checklist ~ run integrated e2e tests on: - schedule: - - cron: '6 8 * * *' workflow_dispatch: inputs: run-cypress-sdk: @@ -21,6 +19,11 @@ on: required: false default: master type: string + send_message_to_slack_channel: + description: 'Notify result to slack' + required: false + default: true + type: boolean jobs: setup-stage: name: Setup env variables @@ -30,20 +33,26 @@ jobs: outputs: run-cypress-sdk: ${{ steps.test-suite-options.outputs.run-cypress-sdk }} run-export: ${{ steps.test-suite-options.outputs.run-export }} + send_message_to_slack_channel: ${{ steps.test-suite-options.outputs.send_message_to_slack_channel }} steps: - name: Set test suite options id: test-suite-options run: | if [ -z "${{ inputs.run-cypress-sdk }}" ]; then - echo 'run-cypress-sdk=false' >> $GITHUB_OUTPUT + echo 'run-cypress-sdk=true' >> $GITHUB_OUTPUT else echo "run-cypress-sdk=${{ inputs.run-cypress-sdk }}" >> $GITHUB_OUTPUT fi if [ -z "${{ inputs.run-export }}" ]; then - echo 'run-export=false' >> $GITHUB_OUTPUT + echo 'run-export=true' >> $GITHUB_OUTPUT else echo "run-export=${{ inputs.run-export }}" >> $GITHUB_OUTPUT fi + if [ -z "${{ inputs.send_message_to_slack_channel }}" ]; then + echo 'send_message_to_slack_channel=true' >> $GITHUB_OUTPUT + else + echo "send_message_to_slack_channel=${{ inputs.send_message_to_slack_channel }}" >> $GITHUB_OUTPUT + fi checklist-SDK: name: Cypress SDK on top of Tiger permissions: @@ -55,7 +64,7 @@ jobs: if: ${{ needs.setup-stage.outputs.run-cypress-sdk == 'true'}} with: CYPRESS_TEST_TAGS: 'checklist_integrated_tiger' - GIT_REVISION: ${{ inputs.GIT_REVISION }} + GIT_REVISION: ${{ inputs.test-branch || master }} TEST_BACKEND: 'https://checklist.staging.stg11.panther.intgdc.com' TIGER_DATASOURCES_NAME: 'vertica_staging-goodsales' checklist-export: @@ -69,6 +78,30 @@ jobs: if: ${{ !cancelled() && (needs.setup-stage.outputs.run-export == 'true') }} with: CYPRESS_TEST_TAGS: 'checklist_integrated_tiger_export' - GIT_REVISION: ${{ inputs.GIT_REVISION }} + GIT_REVISION: ${{ inputs.test-branch || master }} TEST_BACKEND: 'https://checklist.staging.stg11.panther.intgdc.com' TIGER_DATASOURCES_NAME: 'vertica_staging-goodsales' + status-check-notify-slack: + needs: + - setup-stage + - checklist-SDK + - checklist-export + if: ${{ !canceled() }} + runs-on: + group: infra1-runners-arc + labels: runners-small + steps: + - name: Decide whether the needed jobs succeeded or failed + id: alls-green + uses: re-actors/alls-green@release/v1 + with: + allowed-skips: checklist-SDK, checklist-export + jobs: ${{ toJSON(needs) }} + - name: Send Slack notification + uses: slackapi/slack-github-action@v1.27.1 + if: ${{ needs.setup-stage.outputs.send_message_to_slack_channel == 'true' }} + with: + channel-id: qa_tests + slack-message: "${{ steps.alls-green.outcome == 'success' && ':unicorn_face:' || ':robot_panic:' }} `checklist-SDK-${{ github.ref_name }}-branch: ` *${{ steps.alls-green.outcome == 'success' && 'success' || 'failed' }}*; please check *<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|the logs>*." + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} From 3d6904caa325bd17bf35304deffa82963aca8aa4 Mon Sep 17 00:00:00 2001 From: git-action Date: Wed, 18 Dec 2024 07:47:57 +0000 Subject: [PATCH 37/54] chore: bump versions to 10.18.0-alpha.11 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 60bd5766435..092d9ad9249 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index cfb391965e0..bf76981af93 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 3ec4e3f5b9c..f0376f23dde 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index ca6ca719af9..402c1cf885a 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 0306ff11d1e..8ca57bd4b1d 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 5ed921501f3..54365b503a0 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 4c110b39a27..9eed1812cd0 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 7c093449c56..25f8afdf4fb 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 3342283fe10..9adbe86fb9e 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 408eb75cba9..03699c507aa 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 8ca17175dc6..d7181000621 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 79a80357d18..2f19b86151b 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 2cc615d97e5..7099aa3def3 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index def90cc5979..7e768d5c626 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index fac8d96cf61..bfeee9d6490 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 09d4ce20770..ca5d4ce3835 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 27cafba6fb0..e985a7bd36a 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 4b7b46e2e89..1522702580a 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index c5ff1bc3a9b..15b2b57b5dd 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 977cd52aec9..00c371f9fcd 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index fba36d03b41..37e87f360cf 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 45f30756276..a56a2baf4f1 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index ff383616d04..7368f929ea3 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 2fa5bcbbb45..ddbc046e9fc 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index fae7ce36777..ae010a1de21 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 486cc256906..d788b419762 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 397d045e7fe..8a124c2856b 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 3b38cc8cc02..439ecb32e79 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 7382501db41..85e1b887097 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index b8c9796673d..ce07eae2bbe 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 30ee75a0805..e8f1d22f4ae 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 76a361c5a77..39f81e21c11 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 4b774290474..49b327ed02f 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 692bfc766a3..dcf5682c056 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 693cc4a4c23..4e46e7235d9 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index b5d25348076..b8313d6c344 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index d9c7b1cc10f..f101586c337 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7e61d33b821..939b34451c9 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 6674d93835a..c3031c51572 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 4a9bebda421..eab961b9356 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index c3ebcdf4171..0463ad69daf 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index f9b76288f25..a3f25d033b7 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 9269e224594..42dfa41485c 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 3f3f2638313..628713a8fb6 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.10", + "version": "10.18.0-alpha.11", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From cb789ce9b16147b0c5416fd4b176ce09d80ecbaf Mon Sep 17 00:00:00 2001 From: Ivan Nejezchleb Date: Wed, 18 Dec 2024 10:34:08 +0100 Subject: [PATCH 38/54] fix: proper typeguard in drop handler JIRA: LX-711 risk: low --- .../dragAndDrop/draggableWidget/useEmptyContentHandlers.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/draggableWidget/useEmptyContentHandlers.ts b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/draggableWidget/useEmptyContentHandlers.ts index f002b36b51c..f5f20430512 100644 --- a/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/draggableWidget/useEmptyContentHandlers.ts +++ b/libs/sdk-ui-dashboard/src/presentation/flexibleLayout/dragAndDrop/draggableWidget/useEmptyContentHandlers.ts @@ -19,8 +19,9 @@ import { isKpiDraggableItem, isRichTextDraggableItem, isVisualizationSwitcherDraggableItem, + isDashboardLayoutDraggableItem, } from "../../../dragAndDrop/index.js"; -import { isDashboardLayoutItem } from "@gooddata/sdk-model"; + import { useMoveWidgetToNewSectionDropHandler } from "./useMoveWidgetToNewSectionDropHandler.js"; export const useEmptyContentHandlers = (sectionPath: ILayoutSectionPath) => { @@ -73,7 +74,7 @@ export const useEmptyContentHandlers = (sectionPath: ILayoutSectionPath) => { isKpiDraggableItem(item) || isRichTextDraggableItem(item) || isVisualizationSwitcherDraggableItem(item) || - isDashboardLayoutItem(item) + isDashboardLayoutDraggableItem(item) ) { moveWidgetToNewSection(item); } From 0b3674b5d4c878cf8e9e890cf6f63315272f1cc5 Mon Sep 17 00:00:00 2001 From: git-action Date: Wed, 18 Dec 2024 10:29:38 +0000 Subject: [PATCH 39/54] chore: bump versions to 10.18.0-alpha.12 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 092d9ad9249..f59864144eb 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index bf76981af93..113a934e2dc 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index f0376f23dde..57afbd45281 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 402c1cf885a..dc7098f1411 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 8ca57bd4b1d..f9d7e4cb009 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 54365b503a0..b908fbceaca 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 9eed1812cd0..7626e98e167 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 25f8afdf4fb..079833c6677 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 9adbe86fb9e..0c75aea4747 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 03699c507aa..b7097a33176 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index d7181000621..ef742c4f749 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 2f19b86151b..12b73c97f3d 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 7099aa3def3..a5d985dbcf7 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 7e768d5c626..dc23e758e3c 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index bfeee9d6490..7617e410c5a 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index ca5d4ce3835..5be57d55326 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index e985a7bd36a..5843757545b 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 1522702580a..f32159acf07 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 15b2b57b5dd..9dddcfc64cd 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 00c371f9fcd..71c17cf4bbe 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 37e87f360cf..2674f31b6c4 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index a56a2baf4f1..b20fffb42b3 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 7368f929ea3..0e204118668 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index ddbc046e9fc..d3c8ec32c10 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index ae010a1de21..52fc75d0dca 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index d788b419762..144c249272b 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 8a124c2856b..1afdc27aaec 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 439ecb32e79..ef4d35ea4ab 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 85e1b887097..7f6f7c9e242 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index ce07eae2bbe..08d5958ea33 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index e8f1d22f4ae..ebb71b434ea 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 39f81e21c11..b2bab677d9d 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 49b327ed02f..88f78f1b902 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index dcf5682c056..de96b788459 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 4e46e7235d9..cb5d8820b88 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index b8313d6c344..552c3697da6 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index f101586c337..b81776f62b3 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 939b34451c9..0e0ac910317 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index c3031c51572..151be0b6d60 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index eab961b9356..ae4495e8446 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 0463ad69daf..e50edcc228c 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index a3f25d033b7..99d4d9d630f 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 42dfa41485c..e1901d724c2 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 628713a8fb6..74b442bac6c 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.11", + "version": "10.18.0-alpha.12", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From dd4154ad16f41d912dff0fd83542c6b85cf89d9a Mon Sep 17 00:00:00 2001 From: NestorEncinas Date: Wed, 18 Dec 2024 11:11:44 +0100 Subject: [PATCH 40/54] feat: update localisations risk: low JIRA: TNT-523 --- .../localization/bundles/de-DE.json | 21 ++++++++++++++++++- .../localization/bundles/en-AU.json | 21 ++++++++++++++++++- .../localization/bundles/en-GB.json | 21 ++++++++++++++++++- .../localization/bundles/es-419.json | 21 ++++++++++++++++++- .../localization/bundles/es-ES.json | 21 ++++++++++++++++++- .../localization/bundles/fi-FI.json | 21 ++++++++++++++++++- .../localization/bundles/fr-CA.json | 21 ++++++++++++++++++- .../localization/bundles/fr-FR.json | 21 ++++++++++++++++++- .../localization/bundles/it-IT.json | 21 ++++++++++++++++++- .../localization/bundles/ja-JP.json | 21 ++++++++++++++++++- .../localization/bundles/nl-NL.json | 21 ++++++++++++++++++- .../localization/bundles/pt-BR.json | 21 ++++++++++++++++++- .../localization/bundles/pt-PT.json | 21 ++++++++++++++++++- .../localization/bundles/zh-HK.json | 21 ++++++++++++++++++- .../localization/bundles/zh-Hans.json | 21 ++++++++++++++++++- .../localization/bundles/zh-Hant.json | 21 ++++++++++++++++++- .../src/internal/translations/de-DE.json | 10 ++++++++- .../src/internal/translations/en-AU.json | 10 ++++++++- .../src/internal/translations/en-GB.json | 10 ++++++++- .../src/internal/translations/es-419.json | 10 ++++++++- .../src/internal/translations/es-ES.json | 10 ++++++++- .../src/internal/translations/fi-FI.json | 10 ++++++++- .../src/internal/translations/fr-CA.json | 10 ++++++++- .../src/internal/translations/fr-FR.json | 10 ++++++++- .../src/internal/translations/it-IT.json | 10 ++++++++- .../src/internal/translations/ja-JP.json | 10 ++++++++- .../src/internal/translations/nl-NL.json | 10 ++++++++- .../src/internal/translations/pt-BR.json | 10 ++++++++- .../src/internal/translations/pt-PT.json | 10 ++++++++- .../src/internal/translations/zh-HK.json | 10 ++++++++- .../src/internal/translations/zh-Hans.json | 10 ++++++++- .../src/internal/translations/zh-Hant.json | 10 ++++++++- .../src/localization/bundles/de-DE.json | 4 +++- .../src/localization/bundles/en-AU.json | 4 +++- .../src/localization/bundles/en-GB.json | 4 +++- .../src/localization/bundles/es-419.json | 4 +++- .../src/localization/bundles/es-ES.json | 4 +++- .../src/localization/bundles/fi-FI.json | 4 +++- .../src/localization/bundles/fr-CA.json | 4 +++- .../src/localization/bundles/fr-FR.json | 4 +++- .../src/localization/bundles/it-IT.json | 4 +++- .../src/localization/bundles/ja-JP.json | 4 +++- .../src/localization/bundles/nl-NL.json | 4 +++- .../src/localization/bundles/pt-BR.json | 4 +++- .../src/localization/bundles/pt-PT.json | 4 +++- .../src/localization/bundles/zh-HK.json | 4 +++- .../src/localization/bundles/zh-Hans.json | 4 +++- .../src/localization/bundles/zh-Hant.json | 4 +++- 48 files changed, 512 insertions(+), 48 deletions(-) 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/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-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/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-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": "聊天機器人" } From 542ae9ad2cad877b410fc043b77e6cc7deb294af Mon Sep 17 00:00:00 2001 From: git-action Date: Wed, 18 Dec 2024 13:13:40 +0000 Subject: [PATCH 41/54] chore: bump versions to 10.18.0-alpha.13 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index f59864144eb..dc5f4e4203a 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 113a934e2dc..efbbc3324aa 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 57afbd45281..dc12c762d20 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index dc7098f1411..a19e376c648 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index f9d7e4cb009..78107819b64 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index b908fbceaca..c83ecf9bc1b 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 7626e98e167..2dd15f84f67 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 079833c6677..5dbdd874e54 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 0c75aea4747..c04e068da63 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index b7097a33176..3887d6303dc 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index ef742c4f749..a10dc369a01 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 12b73c97f3d..6cb8788ebf3 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index a5d985dbcf7..e53eb569857 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index dc23e758e3c..3c0c835e45b 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 7617e410c5a..d616c5461fd 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 5be57d55326..475f6392c8c 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 5843757545b..b81436cae5d 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index f32159acf07..00ebbb2e251 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 9dddcfc64cd..d4470163fa4 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 71c17cf4bbe..4679a51190a 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 2674f31b6c4..b01d6ff946b 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index b20fffb42b3..e968bbbd183 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 0e204118668..8e38ff9ec12 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index d3c8ec32c10..e8b9006baf5 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 52fc75d0dca..65b3fa318fb 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 144c249272b..e27d88996cc 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 1afdc27aaec..13aed74054c 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index ef4d35ea4ab..e9d8ae48108 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 7f6f7c9e242..44ce61ee87a 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 08d5958ea33..711710cd502 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index ebb71b434ea..a3f5cb0a228 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index b2bab677d9d..d5323adafa0 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 88f78f1b902..6f9ca5c850a 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index de96b788459..1d28d4d0652 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index cb5d8820b88..d27e24674d4 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 552c3697da6..45af48f43d2 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index b81776f62b3..7713f9738cc 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 0e0ac910317..4df68f6434f 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 151be0b6d60..5a9d342b7f2 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index ae4495e8446..4462c051c38 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index e50edcc228c..834927e7a14 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 99d4d9d630f..2d3d05aad99 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index e1901d724c2..59b8979e6b1 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 74b442bac6c..4401a8ef2fa 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.12", + "version": "10.18.0-alpha.13", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 7f2b2c8b1900043fd981a719deeeaae3b7f2468b Mon Sep 17 00:00:00 2001 From: ivanmjartan Date: Wed, 18 Dec 2024 14:21:22 +0100 Subject: [PATCH 42/54] chore: add filters to commands risk: nonprod --- .github/pull_request_template.md | 24 +++++-- .github/workflows/pull-request-comment.yaml | 76 +++++++++++++++++---- 2 files changed, 82 insertions(+), 18 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 35ca6695a71..b79221f6542 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -11,12 +11,28 @@ Description of changes. 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 + ``` -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..e7c04a8ceeb 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; } From 8b8fa4e6ee444508fe17918986cbe9a341e80c9c Mon Sep 17 00:00:00 2001 From: ivanmjartan Date: Wed, 18 Dec 2024 15:09:16 +0100 Subject: [PATCH 43/54] chore: fix isolated command comment check risk: nonprod --- .github/workflows/pull-request-comment.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-request-comment.yaml b/.github/workflows/pull-request-comment.yaml index e7c04a8ceeb..23da992b004 100644 --- a/.github/workflows/pull-request-comment.yaml +++ b/.github/workflows/pull-request-comment.yaml @@ -98,7 +98,7 @@ jobs: e2e-run-isolated: needs: [get-pr-info,extract-filter] - if: $${{ startsWith(github.event.comment.body, 'extended-test --isolated') }} + if: ${{ startsWith(github.event.comment.body, 'extended-test --isolated') }} permissions: id-token: write contents: read @@ -165,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.startsWith('extended-test --isolated')) { + if (process.env.COMMENT?.startsWith('extended-test --isolated')) { testResult = process.env.TEST_RESULT_ISOLATED; } - if (process.env.COMMENT.startsWith('extended-test --record')) { + if (process.env.COMMENT?.startsWith('extended-test --record')) { testResult = process.env.TEST_RESULT_RECORD; } - if (process.env.COMMENT.startsWith('extended-test --integrated')) { + if (process.env.COMMENT?.startsWith('extended-test --integrated')) { testResult = process.env.TEST_RESULT_INTEGRATED; } - if (process.env.COMMENT.startsWith('extended-test --backstop')) { + if (process.env.COMMENT?.startsWith('extended-test --backstop')) { testResult = process.env.TEST_RESULT_BACKSTOP; } From d8255e839689128f25a6538b9b0a4c5594d72fb0 Mon Sep 17 00:00:00 2001 From: ivanmjartan Date: Wed, 18 Dec 2024 16:04:17 +0100 Subject: [PATCH 44/54] chore: fix doc risk: nonprod --- .github/pull_request_template.md | 6 +- dev_docs/continuous_integration.md | 127 ----------------------------- 2 files changed, 3 insertions(+), 130 deletions(-) delete mode 100644 dev_docs/continuous_integration.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b79221f6542..4b79b412e56 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -5,14 +5,14 @@ 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 | --integrated | --isolated | --record [--filter ,,...,] ``` 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 -``` From 5ba58b18701656e757be4bce5686e09bf3e82de5 Mon Sep 17 00:00:00 2001 From: kandl Date: Thu, 19 Dec 2024 10:53:59 +0100 Subject: [PATCH 45/54] fix: show notification panel on mobile - Show notification panel in mobile view - Comment out filtering details for now - Close details panel when opening another one risk: low JIRA: F1-990 --- .../backend/workspace/automations/index.ts | 2 + .../initializeAutomationsHandler.ts | 63 ++++++---- libs/sdk-ui-ext/api/sdk-ui-ext.api.md | 1 + .../src/internal/translations/en-US.json | 2 +- .../Notification/AlertNotification.tsx | 29 +++-- .../NotificationFiltersDetail.tsx | 2 +- .../NotificationTriggersDetail.tsx | 10 +- .../DefaultNotificationsList.scss | 3 + .../DefaultNotificationsList.tsx | 28 ++++- .../DefaultNotificationsPanel.scss | 11 +- .../DefaultNotificationsPanelHeader.scss | 7 +- .../NotificationsPanel/NotificationsPanel.tsx | 115 +++++++++++------- .../components/VirtualList.scss | 6 + .../components/VirtualList.tsx | 12 +- .../data/useFetchNotifications.ts | 9 ++ .../data/useNotificationFiltersDetail.tsx | 54 ++++++-- .../data/useNotifications.tsx | 11 +- libs/sdk-ui-kit/api/sdk-ui-kit.api.md | 13 +- libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx | 3 + libs/sdk-ui-kit/src/Header/Header.tsx | 103 +++++++++++++--- libs/sdk-ui-kit/src/Header/HeaderHelp.tsx | 2 + libs/sdk-ui-kit/src/Header/HeaderMenu.tsx | 3 +- libs/sdk-ui-kit/src/Header/typings.ts | 7 +- libs/sdk-ui-kit/styles/scss/header.scss | 70 ++++++++++- .../src/base/localization/bundles/en-US.json | 5 + 25 files changed, 444 insertions(+), 127 deletions(-) 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-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts b/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts index 79e6b8234a1..a9b4e772069 100644 --- a/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts @@ -27,15 +27,17 @@ import { } from "../../store/automations/automationsSelectors.js"; import { selectCanManageWorkspace } from "../../store/permissions/permissionsSelectors.js"; import { + filterLocalIdentifier, filterObjRef, - IAttributeFilter, - IDateFilter, - isDateFilter, - isRelativeDateFilter, + idRef, + IFilter, + IInsight, + insightFilters, } from "@gooddata/sdk-model"; import { changeFilterContextSelectionHandler } from "../filterContext/changeFilterContextSelectionHandler.js"; import { changeFilterContextSelection } from "../../commands/filters.js"; -import omit from "lodash/omit.js"; +import { IDashboardFilter, isDashboardFilter } from "../../../types.js"; +import { selectInsightByWidgetRef } from "../../store/insights/insightsSelectors.js"; export function* initializeAutomationsHandler( ctx: DashboardContext, @@ -90,24 +92,16 @@ export function* initializeAutomationsHandler( if (automationId) { const targetAutomation = automations.find((a) => a.id === automationId); const targetWidget = targetAutomation?.metadata?.widget; - const targetFilters = targetAutomation?.alert?.execution?.filters; - const filtersWithObjRef = targetFilters - ?.filter((f) => { - const objRef = filterObjRef(f); - return !!objRef; - }) - .map((f) => { - if (isDateFilter(f)) { - if (isRelativeDateFilter(f)) { - return omit(f, "relativeDateFilter.dataSet"); - } - return omit(f, "absoluteDateFilter.dataSet"); - } - return f; - }) as (IAttributeFilter | IDateFilter)[]; + 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; - if (targetWidget && filtersWithObjRef?.length) { - const cmd = changeFilterContextSelection(filtersWithObjRef, true, automationId); + const cmd = changeFilterContextSelection(filtersToSet, true, automationId); yield call(changeFilterContextSelectionHandler, ctx, cmd); } } @@ -132,3 +126,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-ext/api/sdk-ui-ext.api.md b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md index 5ea89eccbd2..dd1058c0a83 100644 --- a/libs/sdk-ui-ext/api/sdk-ui-ext.api.md +++ b/libs/sdk-ui-ext/api/sdk-ui-ext.api.md @@ -537,6 +537,7 @@ export interface INotificationsPanelProps extends INotificationsPanelCustomCompo locale?: ILocale; onNotificationClick: (notification: INotification) => void; refreshInterval?: number; + renderInline?: boolean; workspace?: string; } 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 a5adf882a17..7e38e4f24fc 100644 --- a/libs/sdk-ui-ext/src/internal/translations/en-US.json +++ b/libs/sdk-ui-ext/src/internal/translations/en-US.json @@ -2054,7 +2054,7 @@ "limit": 0 }, "notifications.filters.buttonLabel": { - "value": "{count} filters", + "value": "Show filters", "comment": "", "limit": 0 }, diff --git a/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx b/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx index fe65906eb1b..9e15d7e9662 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/Notification/AlertNotification.tsx @@ -4,7 +4,7 @@ import { IAlertDescription, IAlertNotification, INotification } from "@gooddata/ 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 { NotificationFiltersDetail } from "../NotificationFiltersDetail/NotificationFiltersDetail.js"; import { NotificationTriggerDetail } from "../NotificationTriggersDetail/NotificationTriggersDetail.js"; import { defineMessages, FormattedDate, FormattedMessage, FormattedTime, useIntl } from "react-intl"; @@ -34,13 +34,24 @@ export function AlertNotification({ markAsRead(notification.id); }; - const clickNotification = useCallback(() => { - onNotificationClick(notification); - }, [onNotificationClick, notification]); + 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], + ); - const filterCount = notification.details.data.alert.filterCount; - const isSliced = notification.details.data.alert.attribute; - const showSeparator = filterCount && filterCount > 0 && isSliced; + // 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 ( @@ -54,8 +65,8 @@ export function AlertNotification({ {notificationTitle}
- - {showSeparator ? "・" : null} + {/* + {showSeparator ? "・" : null} */}
diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx index 8369d3e6d48..9cf0e0cb29e 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetail.tsx @@ -49,7 +49,7 @@ export function NotificationFiltersDetail({ notification }: INotificationFilters onClick={onButtonClick} variant="tertiary" size="small" - label={intl.formatMessage(messages.buttonLabel, { count: filterCount })} + label={intl.formatMessage(messages.buttonLabel)} /> ) : null} {isFiltersDialogOpen ? ( diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx index 4240540a6a0..6b2af629621 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationTriggersDetail/NotificationTriggersDetail.tsx @@ -11,6 +11,11 @@ const ALIGN_POINTS = [ overlayAlignPoint: "top-right", offset: { x: 2, y: 3 }, }), + alignConfigToAlignPoint({ + triggerAlignPoint: "bottom-left", + overlayAlignPoint: "top-left", + offset: { x: 2, y: 3 }, + }), ]; const messages = defineMessages({ @@ -39,13 +44,13 @@ export function NotificationTriggerDetail({ notification }: INotificationTrigger <> { - e.stopPropagation(); + onClick={() => { toggleTriggersDialog(); }} variant="tertiary" size="small" label={triggersTitle} + dataId="notification-detail" /> {isTriggersDialogOpen ? ( 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 ? ( @@ -69,6 +92,7 @@ export function DefaultNotificationsList({ hasNextPage={hasNextPage} loadNextPage={loadNextPage} isLoading={isLoading} + maxHeight={Math.max(527, availableHeight)} > {(notification) => (
diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss index 73d01ad411a..4262e06174e 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanel.scss @@ -9,10 +9,15 @@ display: flex; flex-direction: column; - padding-top: 15px; + padding-top: 10px; - width: 370px; - max-height: 560px; + 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/DefaultNotificationsPanelHeader.scss b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss index 7f36080840c..37e6aa169c6 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/DefaultNotificationsPanelHeader.scss @@ -12,7 +12,7 @@ &__tabs { width: 100%; - height: 28px; + height: 23px; display: flex; flex-direction: column; @@ -21,7 +21,10 @@ } &__mark-all-as-read-button { - height: 28px; + 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/NotificationsPanel.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx index d4aa57e1c76..2bc39bb8b7a 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationsPanel/NotificationsPanel.tsx @@ -97,6 +97,11 @@ export interface INotificationsPanelProps extends INotificationsPanelCustomCompo */ locale?: ILocale; + /** + * Render notifications panel inline (without button + clicking on it). + */ + renderInline?: boolean; + /** * Handler for notification click. */ @@ -137,6 +142,7 @@ function NotificationsPanelController({ NotificationsListErrorState = DefaultNotificationsListErrorState, Notification = DefaultNotification, onNotificationClick, + renderInline = false, }: INotificationsPanelProps) { const { buttonRef, @@ -170,48 +176,75 @@ function NotificationsPanelController({ return ( <> - 0} - /> - {isOpen ? ( - - + ) : ( + <> + 0} /> - - ) : null} + {isOpen ? ( + + + + ) : null} + + )} ); } diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss index 1ccaa849e2b..c6dbeac0002 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.scss @@ -1,6 +1,10 @@ // (C) 2024 GoodData Corporation .gd-ui-ext-virtual-list { + display: flex; + flex-direction: column; + min-height: 0; + max-height: 100%; height: 100%; width: 100%; @@ -9,6 +13,8 @@ } &__scroll-container { + min-height: 0; + max-height: 100%; overflow: auto; overflow-x: hidden; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx index 9568ef2c06c..030fa6a85e3 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx @@ -7,7 +7,7 @@ import { Skeleton } from "./Skeleton.js"; import { bem } from "../bem.js"; export interface IPagedVirtualListProps { - maxHeight?: number; + maxHeight: number; items?: T[]; itemHeight: number; itemsGap: number; @@ -80,12 +80,12 @@ function useVirtualList(props: IPagedVirtualListProps) { const { items, itemHeight, - maxHeight = 500, itemsGap, skeletonItemsCount, hasNextPage, loadNextPage, isLoading, + maxHeight, } = props; const scrollContainerRef = React.useRef(null); @@ -99,12 +99,12 @@ function useVirtualList(props: IPagedVirtualListProps) { renderItemsCount = skeletonItemsCount; } - const height = Math.min( + const realHeight = itemsCount > 0 ? (itemHeight + itemsGap) * itemsCount + itemsGap - : skeletonItemsCount * (itemHeight + itemsGap) + itemsGap, - maxHeight, - ); + : skeletonItemsCount * (itemHeight + itemsGap) + itemsGap; + + const height = Math.min(maxHeight, realHeight); const hasScroll = scrollContainerRef.current ? scrollContainerRef.current?.scrollHeight > diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts index 44e39b4fc9f..3784bc378c5 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useFetchNotifications.ts @@ -95,6 +95,14 @@ export function useFetchNotifications({ } }, [status, hasNextPage]); + const reset = useCallback(() => { + setPage(0); + setNotifications([]); + setHasNextPage(false); + setTotalNotificationsCount(0); + setInvalidationId((x) => x + 1); + }, []); + return { notifications, status, @@ -102,5 +110,6 @@ export function useFetchNotifications({ 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 index a897fe03b4a..a30260dd300 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotificationFiltersDetail.tsx @@ -9,12 +9,17 @@ import { 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: { @@ -32,6 +37,18 @@ function getObjRefInScopeLocalId(attributeFilter: IAttributeFilter) { 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"); @@ -42,10 +59,8 @@ export function useNotificationsFilterDetail(notification: IAlertNotification) { if (!notification.automationId) { return null; } - const automation = await backend - .workspace(workspaceId) - .automations() - .getAutomation(notification.automationId); + + const automation = await fetchAutomation(backend, workspaceId, notification.automationId); const automationAlert = automation?.alert; if (!automationAlert) { @@ -73,12 +88,17 @@ export function useNotificationsFilterDetail(notification: IAlertNotification) { }) .filter(Boolean) as ObjRef[]; - const labels = await backend - .workspace(workspaceId) - .attributes() - .getAttributeDisplayForms(filterDisplayFormsRefs); + 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, labels }; + return { automation, dashboard, labels }; }, }, [notification.automationId, workspaceId], @@ -88,14 +108,26 @@ export function useNotificationsFilterDetail(notification: IAlertNotification) { if (!automationPromise.result) { return null; } - const { automation, labels } = automationPromise.result; + const { automation, dashboard, labels } = automationPromise.result; const alert = automation?.alert; if (!alert) { return []; } - return alert.execution.filters + 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 = ""; diff --git a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx index 76ab6d2b93a..053f576183b 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/data/useNotifications.tsx @@ -13,7 +13,7 @@ import { useFetchNotifications } from "./useFetchNotifications.js"; export interface IUseNotificationsProps { workspace?: string; backend?: IAnalyticalBackend; - refreshInterval?: number; + refreshInterval: number; } /** @@ -27,6 +27,7 @@ export function useNotifications({ workspace, refreshInterval }: IUseNotificatio error: notificationsError, loadNextPage: notificationsLoadNextPage, status: notificationsStatus, + reset: notificationsReset, } = useFetchNotifications({ workspace: effectiveWorkspace, refreshInterval, @@ -38,6 +39,7 @@ export function useNotifications({ workspace, refreshInterval }: IUseNotificatio notifications: unreadNotifications, status: unreadNotificationsStatus, totalNotificationsCount: unreadNotificationsCount, + reset: unreadNotificationsReset, } = useFetchNotifications({ workspace: effectiveWorkspace, readStatus: "unread", @@ -83,13 +85,14 @@ export function useNotifications({ workspace, refreshInterval }: IUseNotificatio await organizationService.notifications().markAllNotificationsAsRead(); - setMarkedAsReadNotifications(notifications.map((notification) => notification.id) ?? []); + notificationsReset(); + unreadNotificationsReset(); }, [ organizationService, organizationStatus, - notifications, notificationsStatus, - setMarkedAsReadNotifications, + notificationsReset, + unreadNotificationsReset, ]); const effectiveNotifications = useMemo(() => { 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 7814a84e4ca..ad0df064f7d 100644 --- a/libs/sdk-ui-kit/api/sdk-ui-kit.api.md +++ b/libs/sdk-ui-kit/api/sdk-ui-kit.api.md @@ -827,7 +827,10 @@ export interface IAppHeaderProps { // (undocumented) menuItemsGroups?: IHeaderMenuItem[][]; // (undocumented) - notificationsPanel?: React_2.ReactNode; + notificationsPanel?: (props: { + isMobile: boolean; + closeNotificationsOverlay: () => void; + }) => React_2.ReactNode; // (undocumented) onChatItemClick?: (e: React_2.MouseEvent) => void; // (undocumented) @@ -867,6 +870,8 @@ export interface IAppHeaderState { // (undocumented) isHelpMenuOpen: boolean; // (undocumented) + isNotificationsMenuOpen: boolean; + // (undocumented) isOverlayMenuOpen: boolean; // (undocumented) isSearchMenuOpen: boolean; @@ -2014,6 +2019,8 @@ export interface IHeaderMenuItem { // (undocumented) href?: string; // (undocumented) + icon?: React_2.ReactNode; + // (undocumented) iconName?: string; // (undocumented) isActive?: boolean; @@ -4879,13 +4886,15 @@ export const Typography: React_2.FC; export type TypographyTagName = "h1" | "h2" | "h3" | "p"; // @internal (undocumented) -export const UiButton: ({ buttonRef, size, variant, label, isDisabled, isLoading, iconBefore, iconAfter, onClick, }: 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) iconBefore?: IconType; diff --git a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx index dceaeb67e46..2231eb17659 100644 --- a/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx +++ b/libs/sdk-ui-kit/src/@ui/UiButton/UiButton.tsx @@ -27,6 +27,7 @@ export interface UiButtonProps { isLoading?: boolean; tooltip?: React.ReactNode; onClick?: (e: React.MouseEvent) => void; + dataId?: string; } const { b, e } = bem("gd-ui-kit-button"); @@ -44,6 +45,7 @@ export const UiButton = ({ iconBefore, iconAfter, onClick, + dataId, }: UiButtonProps) => { const iconPosition = iconBefore ? "left" : iconAfter ? "right" : undefined; @@ -54,6 +56,7 @@ export const UiButton = ({ disabled={isDisabled} tabIndex={0} onClick={onClick} + data-id={dataId} > {iconBefore ? ( diff --git a/libs/sdk-ui-kit/src/Header/Header.tsx b/libs/sdk-ui-kit/src/Header/Header.tsx index fa72aff98bd..a890ad7b135 100644 --- a/libs/sdk-ui-kit/src/Header/Header.tsx +++ b/libs/sdk-ui-kit/src/Header/Header.tsx @@ -57,6 +57,7 @@ class AppHeaderCore extends Component = { logoHref: "/", helpMenuDropdownAlignPoints: "br tr", @@ -64,6 +65,7 @@ class AppHeaderCore extends Component(); @@ -80,6 +82,7 @@ class AppHeaderCore extends Component ({ isSearchMenuOpen: !isSearchMenuOpen, isHelpMenuOpen: false, + isNotificationsMenuOpen: false, + })); + }; + + private toggleNotificationsMenu = () => { + this.setState(({ isNotificationsMenuOpen }) => ({ + isNotificationsMenuOpen: !isNotificationsMenuOpen, + isHelpMenuOpen: false, + isSearchMenuOpen: false, + })); + }; + + private closeNotificationsMenu = () => { + this.setState(() => ({ + isNotificationsMenuOpen: false, + isHelpMenuOpen: false, + isSearchMenuOpen: false, + isOverlayMenuOpen: false, })); }; @@ -208,6 +231,7 @@ class AppHeaderCore extends Component { - if (!this.props.search) { + private addAdditionalItems = (itemGroups: IHeaderMenuItem[][]): IHeaderMenuItem[][] => { + const additionalItems = []; + if (this.props.search) { + additionalItems.push({ + key: "gs.header.search", + className: "gd-icon-header-search", + onClick: this.toggleSearchMenu, + }); + } + + if (this.props.notificationsPanel) { + additionalItems.push({ + key: "gs.header.notifications", + className: "gd-icon-header-notifications", + icon: ( + + + + ), + onClick: this.toggleNotificationsMenu, + }); + } + + if (!additionalItems.length) { return itemGroups; } - return [ - ...itemGroups, - [ - { - key: "gs.header.search", - className: "gd-icon-header-search", - onClick: this.toggleSearchMenu, - }, - ], - ]; + return [...itemGroups, additionalItems]; }; private getHelpMenu = () => [ @@ -294,6 +331,7 @@ class AppHeaderCore extends Component { + let content = this.renderVerticalMenu(); + if (this.state.isSearchMenuOpen) { + content = this.renderSearchMenu(); + } + if (this.state.isNotificationsMenuOpen) { + content = this.renderNotificationsOverlay(); + } + return ( - {this.state.isSearchMenuOpen ? this.renderSearchMenu() : this.renderVerticalMenu()} + {content} @@ -352,6 +401,23 @@ class AppHeaderCore extends Component { + if (!this.props.notificationsPanel) { + return null; + } + return ( +
+ + + + {this.props.notificationsPanel({ + isMobile: true, + closeNotificationsOverlay: this.closeNotificationsMenu, + })} +
+ ); + }; + private renderTrialItems = () => { if (this.props.expiredDate || this.props.showUpsellButton) { return ( @@ -377,7 +443,7 @@ class AppHeaderCore extends Component : null} - {this.props.notificationsPanel ?? null} + {this.props.notificationsPanel + ? this.props.notificationsPanel({ + isMobile: false, + closeNotificationsOverlay: this.closeNotificationsMenu, + }) + : null} {this.props.search ? ( void; } @@ -62,6 +63,7 @@ export const CoreHeaderHelp: React.FC = ({ className={cx("gd-list-item gd-list-help-menu-item", { [item.className]: !!item.className })} > {item.iconName ? : null} + {item.icon ? item.icon : null} diff --git a/libs/sdk-ui-kit/src/Header/HeaderMenu.tsx b/libs/sdk-ui-kit/src/Header/HeaderMenu.tsx index 5118adae25e..c73854404d0 100644 --- a/libs/sdk-ui-kit/src/Header/HeaderMenu.tsx +++ b/libs/sdk-ui-kit/src/Header/HeaderMenu.tsx @@ -1,4 +1,4 @@ -// (C) 2007-2022 GoodData Corporation +// (C) 2007-2024 GoodData Corporation import React, { PureComponent, ReactNode } from "react"; import { injectIntl, FormattedMessage, WrappedComponentProps } from "react-intl"; import { v4 as uuid } from "uuid"; @@ -38,6 +38,7 @@ class WrappedHeaderMenu extends PureComponent + {item.icon ? item.icon : null} {item.iconName ? : null} diff --git a/libs/sdk-ui-kit/src/Header/typings.ts b/libs/sdk-ui-kit/src/Header/typings.ts index 10aebeb3f93..29c78b4b3e3 100644 --- a/libs/sdk-ui-kit/src/Header/typings.ts +++ b/libs/sdk-ui-kit/src/Header/typings.ts @@ -14,6 +14,7 @@ export interface IHeaderMenuItem { className?: string; target?: string; iconName?: string; + icon?: React.ReactNode; onClick?: (obj: any) => void; } @@ -62,7 +63,10 @@ export interface IAppHeaderProps { onInviteItemClick?: (e: React.MouseEvent) => void; search?: React.ReactNode; - notificationsPanel?: React.ReactNode; + notificationsPanel?: (props: { + isMobile: boolean; + closeNotificationsOverlay: () => void; + }) => React.ReactNode; showChatItem?: boolean; onChatItemClick?: (e: React.MouseEvent) => void; } @@ -77,6 +81,7 @@ export interface IAppHeaderState { responsiveMode: boolean; isHelpMenuOpen: boolean; isSearchMenuOpen: boolean; + isNotificationsMenuOpen: boolean; } /** diff --git a/libs/sdk-ui-kit/styles/scss/header.scss b/libs/sdk-ui-kit/styles/scss/header.scss index 26cccc512f0..49a31050fc5 100644 --- a/libs/sdk-ui-kit/styles/scss/header.scss +++ b/libs/sdk-ui-kit/styles/scss/header.scss @@ -393,7 +393,8 @@ $button-normal-active-shadow: color.adjust($button-normal-active-border-color, $ align-items: center; } -.gd-header-menu-search { +.gd-header-menu-search, +.gd-header-menu-notifications { display: flex; flex-direction: column; background-color: variables.$gd-color-white; @@ -471,6 +472,70 @@ $button-normal-active-shadow: color.adjust($button-normal-active-border-color, $ } } +.gd-header-notifications-icon { + padding-right: 5px; +} + +.gd-header-notifications { + height: 100%; + margin: 0; + line-height: 42px; + opacity: 0.8; + cursor: pointer; + transition: all 0.2s; + font-size: 14px; + font-weight: 400; + position: relative; + box-sizing: border-box; + padding: 0 34px 2px 13px; + + @include mixins.text-overflow; + + &:hover, + &.is-open { + opacity: 1; + } + + &::after { + content: "\e612"; + position: absolute; + top: 0; + right: 11px; + margin-left: 11px; + width: 12px; + opacity: 0.5; + text-align: center; + font-family: variables.$gd-font-indigo; + font-size: 18px; + font-weight: 700; + } + + &.is-open::after { + content: "\e613"; + } + + &:hover { + background: rgba(255, 255, 255, 0.3); + } + + &.is-open { + background-color: rgba(255, 255, 255, 0.3); + } + + &-dropdown { + overflow: hidden; + + .gd-list { + min-width: 210px; + + .gd-list-item { + font-family: variables.$gd-font-primary; + font-weight: 400; + } + } + } +} + .gd-header-chat { height: 100%; margin: 0; @@ -787,7 +852,8 @@ $button-normal-active-shadow: color.adjust($button-normal-active-border-color, $ } } - &.search-open { + &.search-open, + &.notifications-open { color: variables.$gd-color-text; } } 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": "", From 29b53c50ea3e7ed45c8389b5786d0bbc6c1c5171 Mon Sep 17 00:00:00 2001 From: git-action Date: Thu, 19 Dec 2024 14:38:10 +0000 Subject: [PATCH 46/54] chore: bump versions to 10.18.0-alpha.14 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index dc5f4e4203a..813223349f0 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index efbbc3324aa..8084ba03aaa 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index dc12c762d20..cb8c101d326 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index a19e376c648..f815ff9a84c 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 78107819b64..06f25e60481 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index c83ecf9bc1b..62f982a0d2d 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 2dd15f84f67..0ffc78ce5c6 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 5dbdd874e54..11497a97020 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index c04e068da63..1180fd95fb6 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 3887d6303dc..50b363651f7 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index a10dc369a01..be9491f0416 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 6cb8788ebf3..5fcd8f87444 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index e53eb569857..b910b2f7b81 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 3c0c835e45b..72460ee7475 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index d616c5461fd..e4918fc52b9 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 475f6392c8c..7979ecd3231 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index b81436cae5d..2d1d3a8f6b0 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index 00ebbb2e251..dcdfeb6ee64 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index d4470163fa4..553ffd47eb0 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index 4679a51190a..bf79f2583a4 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index b01d6ff946b..547bf3d4a7f 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index e968bbbd183..fa7028d7e9f 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 8e38ff9ec12..446fa6e75c0 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index e8b9006baf5..e8f8a0b95a2 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 65b3fa318fb..7a13d49eaef 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index e27d88996cc..b3b3424ab90 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 13aed74054c..a71317f5ab9 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index e9d8ae48108..9335814a6ae 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 44ce61ee87a..841c20efe6a 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index 711710cd502..f8a3c1939c8 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index a3f5cb0a228..a580f70c817 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index d5323adafa0..05f99726fe2 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index 6f9ca5c850a..aef2fecd196 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 1d28d4d0652..97a5f0e27a5 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index d27e24674d4..41e15b63c69 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 45af48f43d2..e6ef43d85c2 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 7713f9738cc..4a80c999f97 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 4df68f6434f..b113c0605ba 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 5a9d342b7f2..e837d9430fe 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 4462c051c38..c8bff077cb4 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 834927e7a14..db5e000f8fa 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 2d3d05aad99..bb6412b7a18 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 59b8979e6b1..79a04aa70a3 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 4401a8ef2fa..2574f5febb3 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.13", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From c14c14fcaed0324461fe4ce56e8753aa01d1484c Mon Sep 17 00:00:00 2001 From: git-action Date: Fri, 20 Dec 2024 04:20:28 +0000 Subject: [PATCH 47/54] chore: bumped version of sdk packages to 10.18.0-alpha.14 which is in master risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index e3d1de2db00..813223349f0 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 16cd7e79a08..8084ba03aaa 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 2ef543da0c9..cb8c101d326 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 46b35f9080b..f815ff9a84c 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 2b1e08ac5da..06f25e60481 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 2c5d5195551..62f982a0d2d 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index f0c4f2c10f2..0ffc78ce5c6 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 823c711f077..11497a97020 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 6afa4448f4d..1180fd95fb6 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index bf7f6a7e518..50b363651f7 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 9a5435d7d44..be9491f0416 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 263091ad7d1..5fcd8f87444 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 9d5b957aee5..b910b2f7b81 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index cdb8c39bcab..72460ee7475 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 34e861fc46a..e4918fc52b9 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 2d1f18807f6..7979ecd3231 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 11d94a80fa0..2d1d3a8f6b0 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index ac5d8bb7700..dcdfeb6ee64 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index ca2ba958173..553ffd47eb0 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index a6a2a0859d5..bf79f2583a4 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index c56c5754277..547bf3d4a7f 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 567e8698b71..fa7028d7e9f 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 75e521d4253..446fa6e75c0 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 06bbf4f5586..e8f8a0b95a2 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 1970ad33c97..7a13d49eaef 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 141e7a2e861..b3b3424ab90 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 55f31713b03..583c42bf9b6 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 61b1c544776..9335814a6ae 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index b831ddaf4f0..841c20efe6a 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index d7a7cf1faf4..f8a3c1939c8 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index b1e25c60510..a580f70c817 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 315039c1215..05f99726fe2 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index fc1de43c8f9..aef2fecd196 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 9013910f154..97a5f0e27a5 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 207ec67194a..41e15b63c69 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 823841c3309..e6ef43d85c2 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 4a4f682c2de..4a80c999f97 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7666092ff13..b113c0605ba 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 555134e5bca..e837d9430fe 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 57740d815d5..c8bff077cb4 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 1f0cab71771..db5e000f8fa 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 3adab33b8f4..bb6412b7a18 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index af6b88dc254..79a04aa70a3 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 4b1df2d3f2d..2574f5febb3 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.14", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 383afd2830b81148ca74f813223224c4b041e762 Mon Sep 17 00:00:00 2001 From: Petr Benes Date: Thu, 19 Dec 2024 10:48:12 +0100 Subject: [PATCH 48/54] feat: cleanup backstopjs artifacts After test is finished with failure, postprocess the results to include only failed test screenshots in the report to decrease artifact size. Also include reference images in the output for visibility in the html report. risk: low JIRA: STL-1006 --- .../rw-rush-build-e2e-tests-backstop.yml | 6 +- .../backstop/backstop-cleanup-artifacts.cjs | 81 +++++++++++++++++++ .../backstop/run-backstop-compose.sh | 6 +- 3 files changed, 88 insertions(+), 5 deletions(-) create mode 100644 libs/sdk-ui-tests/backstop/backstop-cleanup-artifacts.cjs 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/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/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 From e92995db9b7637294096a8bb82bde265f16a2da9 Mon Sep 17 00:00:00 2001 From: Petr Benes Date: Fri, 20 Dec 2024 10:02:16 +0100 Subject: [PATCH 49/54] fix: remove translte: false from scheduling/alerting strings risk: low JIRA: LX-714 --- .../src/presentation/localization/bundles/en-US.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 bef95881445..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 @@ -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.", From 1728acaf93e1da694c825f4708e53a361d1348ea Mon Sep 17 00:00:00 2001 From: kandl Date: Fri, 20 Dec 2024 10:55:04 +0100 Subject: [PATCH 50/54] fix: remove loading users from init - Load users on demand, when alert/scheduled export dialog is opened. risk: low JIRA: F1-998 --- common/config/rush/pnpm-lock.yaml | 8 +- .../api/sdk-ui-dashboard.api.md | 39 +++++++--- .../src/model/commandHandlers/index.ts | 2 + .../initializeAutomationsHandler.ts | 7 +- .../users/loadAllUsersHandler.ts | 31 ++++++++ .../loadWorkspaceUsers.ts | 0 .../src/model/commands/base.ts | 4 +- .../src/model/commands/index.ts | 6 +- .../src/model/commands/users.ts | 26 +++++++ .../sdk-ui-dashboard/src/model/react/index.ts | 1 + .../useDashboardScheduledEmails.ts | 2 - .../useDashboardScheduledEmailsData.ts | 4 - .../src/model/react/useWorkspaceUsers.ts | 30 ++++++++ .../sdk-ui-dashboard/src/model/store/index.ts | 2 +- .../src/model/store/users/usersReducers.ts | 14 ++++ .../src/model/store/users/usersSelectors.ts | 34 ++++++++- .../src/model/store/users/usersState.ts | 7 +- .../DefaultAlertingDialog.tsx | 2 +- .../src/presentation/alerting/types.ts | 10 --- .../AlertingDialogProvider.tsx | 2 - .../ScheduledEmailDialogProvider.tsx | 33 +++++++-- .../DefaultLoadingScheduledEmailDialog.tsx | 64 ++++++++++++++++ .../DefaultScheduledEmailDialog.tsx | 18 ++--- .../hooks/useEditScheduledEmail.ts | 2 +- .../src/presentation/scheduledEmail/types.ts | 10 --- .../InsightAlertConfig/hooks/useEditAlert.ts | 2 +- .../hooks/useInsightAlerting.ts | 17 +++-- .../insight/configuration/InsightAlerts.tsx | 4 +- libs/sdk-ui-ext/package.json | 1 - .../NotificationFiltersDetailDialog.tsx | 4 +- .../components/Skeleton.scss | 25 ------- .../components/Skeleton.tsx | 26 ------- .../components/VirtualList.tsx | 4 +- .../notificationsPanel/notificationPanel.scss | 1 - libs/sdk-ui-kit/api/sdk-ui-kit.api.md | 12 +++ libs/sdk-ui-kit/package.json | 1 + .../src/@ui/UiSkeleton/UiSkeleton.scss | 41 ++++++++++ .../src/@ui/UiSkeleton/UiSkeleton.tsx | 74 +++++++++++++++++++ libs/sdk-ui-kit/src/@ui/index.scss | 1 + libs/sdk-ui-kit/src/index.ts | 2 + 40 files changed, 434 insertions(+), 139 deletions(-) create mode 100644 libs/sdk-ui-dashboard/src/model/commandHandlers/users/loadAllUsersHandler.ts rename libs/sdk-ui-dashboard/src/model/commandHandlers/{scheduledEmail => users}/loadWorkspaceUsers.ts (100%) create mode 100644 libs/sdk-ui-dashboard/src/model/commands/users.ts create mode 100644 libs/sdk-ui-dashboard/src/model/react/useWorkspaceUsers.ts create mode 100644 libs/sdk-ui-dashboard/src/presentation/scheduledEmail/DefaultScheduledEmailDialog/DefaultLoadingScheduledEmailDialog.tsx delete mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss delete mode 100644 libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx create mode 100644 libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.scss create mode 100644 libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.tsx diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index c5c2f430459..16b73233632 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -2747,9 +2747,6 @@ importers: react-lines-ellipsis: specifier: ^0.15.0 version: 0.15.4(react-dom@18.2.0)(react@18.2.0) - react-loading-skeleton: - specifier: ^3.4.0 - version: 3.4.0(react@18.2.0) react-measure: specifier: ^2.5.2 version: 2.5.2(react-dom@18.2.0)(react@18.2.0) @@ -3585,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) @@ -4377,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 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 780be331a4e..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,7 +1546,7 @@ export interface DashboardCommandStartedPayload void; onUpdate?: (alertingDefinition: IAutomationMetadataObject) => void; } @@ -3871,7 +3870,6 @@ export interface IAlertingManagementDialogProps { alertingDataError?: GoodDataSdkError; automations: IAutomationMetadataObject[]; isLoadingAlertingData: boolean; - isVisible?: boolean; onClose?: () => void; onDeleteError?: (error: GoodDataSdkError) => void; onDeleteSuccess?: (alert: IAutomationMetadataObject) => void; @@ -5231,7 +5229,6 @@ export interface IScheduledEmailDialogProps { dashboardFilters?: FilterContextItem[]; insight?: IInsight; isLoading?: boolean; - isVisible?: boolean; notificationChannels: INotificationChannelMetadataObject[]; onCancel?: () => void; onDeleteError?: (error: GoodDataSdkError) => void; @@ -5258,7 +5255,6 @@ export interface IScheduledEmailDialogPropsContext { export interface IScheduledEmailManagementDialogProps { automations: IAutomationMetadataObject[]; isLoadingScheduleData: boolean; - isVisible?: boolean; notificationChannels: INotificationChannelMetadataObject[]; onAdd?: () => void; onClose?: () => void; @@ -5994,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) @@ -7741,6 +7746,9 @@ export const selectEntitlementMinimumRecurrenceMinutes: DashboardSelector; +// @alpha +export const selectErrorUsers: DashboardSelector; + // @alpha (undocumented) export const selectExecutionResult: (state: DashboardState, id: EntityId) => IExecutionResultEnvelope | undefined; @@ -8162,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; @@ -9360,7 +9371,6 @@ export type UseDashboardQueryProcessingResult { scheduledExportToEdit: IAutomationMetadataObject | undefined; isInitialized: boolean; - users: IWorkspaceUser[]; notificationChannels: INotificationChannelMetadataObject[]; automations: IAutomationMetadataObject[]; automationsCount: number; @@ -9585,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) @@ -9644,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/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 a9b4e772069..d7e86165832 100644 --- a/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts +++ b/libs/sdk-ui-dashboard/src/model/commandHandlers/scheduledEmail/initializeAutomationsHandler.ts @@ -15,11 +15,9 @@ 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, @@ -76,16 +74,14 @@ 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 @@ -113,7 +109,6 @@ export function* initializeAutomationsHandler( automationsActions.setUserAutomations(automations), automationsActions.setAllAutomationsCount(allAutomationsCount), notificationChannelsActions.setNotificationChannels(notificationChannels), - usersActions.setUsers(users), ]), ); } catch (e) { 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 7a67d48dafb..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, @@ -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); @@ -115,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/index.ts b/libs/sdk-ui-dashboard/src/model/store/index.ts index 6df7d6dd345..de86fa2e050 100644 --- a/libs/sdk-ui-dashboard/src/model/store/index.ts +++ b/libs/sdk-ui-dashboard/src/model/store/index.ts @@ -428,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/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/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/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-ext/package.json b/libs/sdk-ui-ext/package.json index a71317f5ab9..a4aa18353d6 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -85,7 +85,6 @@ "lru-cache": "^10.0.1", "react-intl": "^6.4.1", "react-lines-ellipsis": "^0.15.0", - "react-loading-skeleton": "^3.4.0", "react-measure": "^2.5.2", "react-select": "^5.7.3", "react-select-async-paginate": "^0.7.3", diff --git a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx index 91d182a83f0..489d0be1598 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/NotificationFiltersDetail/NotificationFiltersDetailDialog.tsx @@ -1,7 +1,7 @@ // (C) 2024 GoodData Corporation import { IAlertNotification } from "@gooddata/sdk-model"; import React from "react"; -import { Skeleton } from "../components/Skeleton.js"; +import { UiSkeleton } from "@gooddata/sdk-ui-kit"; import { DetailsDialog } from "../components/DetailsDialog.js"; import { useNotificationsFilterDetail } from "../data/useNotificationFiltersDetail.js"; import { bem } from "../bem.js"; @@ -40,7 +40,7 @@ export function NotificationFiltersDetailDialog({ content={
{automationPromise.status !== "success" ? ( - + ) : ( filtersInfo?.map(({ title, subtitle }, idx) => (
diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss deleted file mode 100644 index b0d530e1b27..00000000000 --- a/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.scss +++ /dev/null @@ -1,25 +0,0 @@ -// (C) 2024 GoodData Corporation - -@use "@gooddata/sdk-ui-kit/styles/scss/variables" as kit-variables; -@use "react-loading-skeleton/dist/skeleton.css"; - -.gd-ui-ext-skeleton { - height: 100%; - width: 100%; - display: flex; - flex-direction: column; - - &__item { - border-radius: 3px; - } - - .react-loading-skeleton { - --base-color: var(--gd-palette-complementary-2); - --highlight-color: var(--gd-palette-complementary-0); - } - - span { - line-height: 0; - font-size: 0; - } -} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx deleted file mode 100644 index c6650de53a6..00000000000 --- a/libs/sdk-ui-ext/src/notificationsPanel/components/Skeleton.tsx +++ /dev/null @@ -1,26 +0,0 @@ -// (C) 2024 GoodData Corporation -import React, { useMemo } from "react"; -import ReactLoadingSkeleton from "react-loading-skeleton"; -import { bem } from "../bem.js"; - -const { b, e } = bem("gd-ui-ext-skeleton"); - -export interface ISkeletonProps { - itemHeight: number; - itemsCount?: number; - gap?: number; -} - -export function Skeleton({ itemsCount = 1, itemHeight, gap = 10 }: ISkeletonProps) { - const items = Array.from({ length: itemsCount }, (_, idx) => ( - - )); - - const style = useMemo(() => ({ gap }), [gap]); - - return ( -
- {items} -
- ); -} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx index 030fa6a85e3..a5e00ee48e7 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx +++ b/libs/sdk-ui-ext/src/notificationsPanel/components/VirtualList.tsx @@ -1,9 +1,9 @@ // (C) 2024 GoodData Corporation import React, { useEffect } from "react"; +import { UiSkeleton } from "@gooddata/sdk-ui-kit"; import { useVirtualizer } from "@tanstack/react-virtual"; -import { Skeleton } from "./Skeleton.js"; import { bem } from "../bem.js"; export interface IPagedVirtualListProps { @@ -63,7 +63,7 @@ export function PagedVirtualList(props: IPagedVirtualListProps) { return (
{isSkeletonItem ? ( - + ) : ( children(item!) )} diff --git a/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss b/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss index 97ac21ef34b..43cab73b795 100644 --- a/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss +++ b/libs/sdk-ui-ext/src/notificationsPanel/notificationPanel.scss @@ -1,7 +1,6 @@ // (C) 2024 GoodData Corporation @use "./components/DetailsDialog.scss"; -@use "./components/Skeleton.scss"; @use "./components/VirtualList.scss"; // Panel @use "./NotificationsPanel/DefaultNotificationsPanel.scss"; 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 ad0df064f7d..0cb2142498f 100644 --- a/libs/sdk-ui-kit/api/sdk-ui-kit.api.md +++ b/libs/sdk-ui-kit/api/sdk-ui-kit.api.md @@ -4929,6 +4929,18 @@ export interface UiIconProps { 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"; diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index a580f70c817..2838ec7a7c3 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/UiSkeleton/UiSkeleton.scss b/libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.scss new file mode 100644 index 00000000000..3ac92caa71f --- /dev/null +++ b/libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.scss @@ -0,0 +1,41 @@ +// (C) 2024 GoodData Corporation +@use "react-loading-skeleton/dist/skeleton.css"; + +.gd-ui-kit-skeleton { + height: 100%; + width: 100%; + display: flex; + + &--direction { + &-column { + flex-direction: column; + justify-content: flex-start; + align-items: flex-start; + } + + &-row { + flex-direction: row; + justify-content: flex-start; + align-items: center; + } + } + + &__item { + border-radius: 3px; + width: 100%; + height: 100%; + } + + .react-loading-skeleton { + --base-color: var(--gd-palette-complementary-2); + --highlight-color: var(--gd-palette-complementary-0); + } + + span { + line-height: 0; + font-size: 0; + width: 100%; + height: 100%; + display: block; + } +} diff --git a/libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.tsx b/libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.tsx new file mode 100644 index 00000000000..5ac822d1326 --- /dev/null +++ b/libs/sdk-ui-kit/src/@ui/UiSkeleton/UiSkeleton.tsx @@ -0,0 +1,74 @@ +// (C) 2024 GoodData Corporation +import React, { useMemo } from "react"; +import ReactLoadingSkeleton from "react-loading-skeleton"; +import { bem } from "../@utils/bem.js"; + +const { b, e } = bem("gd-ui-kit-skeleton"); + +/** + * @internal + */ +export interface UiSkeletonProps { + /** + * Number of items to render. + */ + itemsCount?: number; + + /** + * Height of the item, or items. + */ + itemHeight?: (number | string) | (number | string)[]; + + /** + * Width of the item, or items. + */ + itemWidth?: (number | string) | (number | string)[]; + + /** + * Gap between the items. + */ + gap?: number; + + /** + * Whether to render the skeleton in a row or column. + */ + direction?: "row" | "column"; +} + +/** + * @internal + */ +export function UiSkeleton({ + itemsCount = 1, + itemHeight = 24, + itemWidth, + gap = 10, + direction = "column", +}: UiSkeletonProps) { + const items = Array.from({ length: itemsCount }, (_, idx) => ( +
+ +
+ )); + + const style = useMemo(() => ({ gap }), [gap]); + + return ( +
+ {items} +
+ ); +} diff --git a/libs/sdk-ui-kit/src/@ui/index.scss b/libs/sdk-ui-kit/src/@ui/index.scss index cc6c80b5fb9..14a849ebd0d 100644 --- a/libs/sdk-ui-kit/src/@ui/index.scss +++ b/libs/sdk-ui-kit/src/@ui/index.scss @@ -2,3 +2,4 @@ @use "./UiButton/UiButton.scss"; @use "./UiIcon/UiIcon.scss"; +@use "./UiSkeleton/UiSkeleton.scss"; diff --git a/libs/sdk-ui-kit/src/index.ts b/libs/sdk-ui-kit/src/index.ts index 2e53fe0cdd9..1ced86f764a 100644 --- a/libs/sdk-ui-kit/src/index.ts +++ b/libs/sdk-ui-kit/src/index.ts @@ -85,3 +85,5 @@ export type { ThemeColor } from "./@ui/@types/themeColors.js"; export type { IconType } from "./@ui/@types/icon.js"; export { UiIcon } from "./@ui/UiIcon/UiIcon.js"; export type { UiIconProps } from "./@ui/UiIcon/UiIcon.js"; +export { UiSkeleton } from "./@ui/UiSkeleton/UiSkeleton.js"; +export type { UiSkeletonProps } from "./@ui/UiSkeleton/UiSkeleton.js"; From 6544cd7bcc5304e094ab7788ea88129cbe5fbb6f Mon Sep 17 00:00:00 2001 From: git-action Date: Fri, 20 Dec 2024 10:32:08 +0000 Subject: [PATCH 51/54] chore: bump versions to 10.18.0-alpha.15 risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index 813223349f0..280e34381fa 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 8084ba03aaa..5650db8f3b3 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index cb8c101d326..6ed7d1cb870 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index f815ff9a84c..49e3bb78bd5 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 06f25e60481..8e8f5f08e15 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 62f982a0d2d..a5a4e8072ca 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index 0ffc78ce5c6..ecd4fb530d7 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 11497a97020..e837b656444 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 1180fd95fb6..76d8c52ace5 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index 50b363651f7..d860a0f63ab 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index be9491f0416..e8b418e7512 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 5fcd8f87444..c76916dedd4 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index b910b2f7b81..2de50edd4f5 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index 72460ee7475..005b905e226 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index e4918fc52b9..e5892a07664 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 7979ecd3231..6a4845df241 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 2d1d3a8f6b0..79a422d2b48 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index dcdfeb6ee64..62fbb8a745f 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index 553ffd47eb0..745e4b924ab 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index bf79f2583a4..611ff2a3a22 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index 547bf3d4a7f..b14b7ecaf06 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index fa7028d7e9f..67516cac295 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 446fa6e75c0..ecde9d5e2de 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index e8f8a0b95a2..a141df5acad 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 7a13d49eaef..0ee9c75a637 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index b3b3424ab90..6be64c63870 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index a4aa18353d6..29420f2b7bd 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 9335814a6ae..cbf198bac4e 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index 841c20efe6a..722d2aa960b 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index f8a3c1939c8..737ded8f0a1 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index 2838ec7a7c3..849afc043ac 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 05f99726fe2..16be4c1e644 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index aef2fecd196..6cb89b66aeb 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 97a5f0e27a5..5b26ce2c961 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 41e15b63c69..9490251a03d 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index e6ef43d85c2..03cadd72462 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 4a80c999f97..d3ef7bad78a 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index b113c0605ba..2e10d44c143 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index e837d9430fe..2ac3410c96e 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index c8bff077cb4..96ae516e6b9 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index db5e000f8fa..53ad48e8d19 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index bb6412b7a18..6437f9725ba 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index 79a04aa70a3..0a52a5b9593 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 2574f5febb3..c24ea69dae9 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.18.0-alpha.14", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 1a751138f5e477059f59c504d0589a201e2d4f70 Mon Sep 17 00:00:00 2001 From: git-action Date: Fri, 20 Dec 2024 11:27:02 +0000 Subject: [PATCH 52/54] chore: update attribution file risk: nonprod --- NOTICE | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NOTICE b/NOTICE index 4e789272404..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: 7858990a3c705864b91bd44591aa99013da8e51b +Revision ID: 6544cd7bcc5304e094ab7788ea88129cbe5fbb6f ================================================================================ ================================================================================ @@ -72660,4 +72660,4 @@ POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -Report Generated by FOSSA on 2024-12-12 +Report Generated by FOSSA on 2024-12-20 From d139e1e29c41e9e98ef4a61ac3e7a591bb1729e9 Mon Sep 17 00:00:00 2001 From: git-action Date: Mon, 23 Dec 2024 03:13:01 +0000 Subject: [PATCH 53/54] chore: bumped version of sdk packages to 10.18.0-alpha.15 which is in master risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index e3d1de2db00..280e34381fa 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 16cd7e79a08..5650db8f3b3 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 2ef543da0c9..6ed7d1cb870 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 46b35f9080b..49e3bb78bd5 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 2b1e08ac5da..8e8f5f08e15 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 2c5d5195551..a5a4e8072ca 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index f0c4f2c10f2..ecd4fb530d7 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 823c711f077..e837b656444 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 6afa4448f4d..76d8c52ace5 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index bf7f6a7e518..d860a0f63ab 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 9a5435d7d44..e8b418e7512 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 263091ad7d1..c76916dedd4 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 9d5b957aee5..2de50edd4f5 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index cdb8c39bcab..005b905e226 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 34e861fc46a..e5892a07664 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 2d1f18807f6..6a4845df241 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 11d94a80fa0..79a422d2b48 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index ac5d8bb7700..62fbb8a745f 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index ca2ba958173..745e4b924ab 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index a6a2a0859d5..611ff2a3a22 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index c56c5754277..b14b7ecaf06 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 567e8698b71..67516cac295 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 75e521d4253..ecde9d5e2de 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 06bbf4f5586..a141df5acad 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 1970ad33c97..0ee9c75a637 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 141e7a2e861..6be64c63870 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 55f31713b03..000a499eba7 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 61b1c544776..cbf198bac4e 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index b831ddaf4f0..722d2aa960b 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index d7a7cf1faf4..737ded8f0a1 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index b1e25c60510..acf6b287b0c 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 315039c1215..16be4c1e644 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index fc1de43c8f9..6cb89b66aeb 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 9013910f154..5b26ce2c961 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 207ec67194a..9490251a03d 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 823841c3309..03cadd72462 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 4a4f682c2de..d3ef7bad78a 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7666092ff13..2e10d44c143 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 555134e5bca..2ac3410c96e 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 57740d815d5..96ae516e6b9 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 1f0cab71771..53ad48e8d19 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 3adab33b8f4..6437f9725ba 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index af6b88dc254..0a52a5b9593 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 4b1df2d3f2d..c24ea69dae9 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": { From 9b97cf27907f137a220199a3fc8325f0b24ab7ab Mon Sep 17 00:00:00 2001 From: git-action Date: Tue, 24 Dec 2024 04:22:50 +0000 Subject: [PATCH 54/54] chore: bumped version of sdk packages to 10.18.0-alpha.15 which is in master risk: nonprod --- common/config/rush/version-policies.json | 4 ++-- .../sdk-interactive-examples/examples-template/package.json | 2 +- .../examples/example-attributefilter/package.json | 2 +- .../examples/example-chartconfig/package.json | 2 +- .../examples/example-columnchart/package.json | 2 +- .../examples/example-combochart/package.json | 2 +- .../examples/example-dashboard/package.json | 2 +- .../examples/example-datefilter/package.json | 2 +- .../examples/example-dependentfilters/package.json | 2 +- .../examples/example-execute/package.json | 2 +- .../examples/example-granularity/package.json | 2 +- .../examples/example-headline/package.json | 2 +- .../examples/example-pivottable/package.json | 2 +- .../examples/example-relativedatefilter/package.json | 2 +- .../examples/example-repeater/package.json | 2 +- examples/sdk-interactive-examples/package.json | 2 +- libs/api-client-tiger/package.json | 2 +- libs/sdk-backend-base/package.json | 2 +- libs/sdk-backend-mockingbird/package.json | 2 +- libs/sdk-backend-spi/package.json | 2 +- libs/sdk-backend-tiger/package.json | 2 +- libs/sdk-embedding/package.json | 2 +- libs/sdk-model/package.json | 2 +- libs/sdk-ui-all/package.json | 2 +- libs/sdk-ui-charts/package.json | 2 +- libs/sdk-ui-dashboard/package.json | 2 +- libs/sdk-ui-ext/package.json | 2 +- libs/sdk-ui-filters/package.json | 2 +- libs/sdk-ui-gen-ai/package.json | 2 +- libs/sdk-ui-geo/package.json | 2 +- libs/sdk-ui-kit/package.json | 2 +- libs/sdk-ui-loaders/package.json | 2 +- libs/sdk-ui-pivot/package.json | 2 +- libs/sdk-ui-semantic-search/package.json | 2 +- libs/sdk-ui-theme-provider/package.json | 2 +- libs/sdk-ui-vis-commons/package.json | 2 +- libs/sdk-ui/package.json | 2 +- libs/util/package.json | 2 +- tools/app-toolkit/package.json | 2 +- tools/catalog-export/package.json | 2 +- tools/i18n-toolkit/package.json | 2 +- tools/mock-handling/package.json | 2 +- tools/plugin-toolkit/package.json | 2 +- tools/reference-workspace/package.json | 2 +- 44 files changed, 45 insertions(+), 45 deletions(-) diff --git a/common/config/rush/version-policies.json b/common/config/rush/version-policies.json index e3d1de2db00..280e34381fa 100644 --- a/common/config/rush/version-policies.json +++ b/common/config/rush/version-policies.json @@ -12,14 +12,14 @@ { "definitionName": "lockStepVersion", "policyName": "sdk", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-ui-all" }, { "definitionName": "lockStepVersion", "policyName": "sdk-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "nextBump": "prerelease", "mainProject": "@gooddata/sdk-interactive-examples" } diff --git a/examples/sdk-interactive-examples/examples-template/package.json b/examples/sdk-interactive-examples/examples-template/package.json index 16cd7e79a08..5650db8f3b3 100644 --- a/examples/sdk-interactive-examples/examples-template/package.json +++ b/examples/sdk-interactive-examples/examples-template/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples-template", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "GoodData interactive example template", "description": "GoodData interactive example template", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json index 2ef543da0c9..6ed7d1cb870 100644 --- a/examples/sdk-interactive-examples/examples/example-attributefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-attributefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-attributefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Attribute Filter Example", "description": "This example demonstrates how to use the AttributeFilter component to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json index 46b35f9080b..49e3bb78bd5 100644 --- a/examples/sdk-interactive-examples/examples/example-chartconfig/package.json +++ b/examples/sdk-interactive-examples/examples/example-chartconfig/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-chartconfig", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Chart config manipulation", "description": "This interactive example demonstrates how to manipulate the chart config.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-columnchart/package.json b/examples/sdk-interactive-examples/examples/example-columnchart/package.json index 2b1e08ac5da..8e8f5f08e15 100644 --- a/examples/sdk-interactive-examples/examples/example-columnchart/package.json +++ b/examples/sdk-interactive-examples/examples/example-columnchart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-columnchart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "ColumnChart", "description": "This example demonstrates the usage of the ColumnChart component with the viewBy and stackBy properties.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-combochart/package.json b/examples/sdk-interactive-examples/examples/example-combochart/package.json index 2c5d5195551..a5a4e8072ca 100644 --- a/examples/sdk-interactive-examples/examples/example-combochart/package.json +++ b/examples/sdk-interactive-examples/examples/example-combochart/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-combochart", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "ComboChart", "description": "Example demonstrates ComboChart secondaryMeasures definition. ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dashboard/package.json b/examples/sdk-interactive-examples/examples/example-dashboard/package.json index f0c4f2c10f2..ecd4fb530d7 100644 --- a/examples/sdk-interactive-examples/examples/example-dashboard/package.json +++ b/examples/sdk-interactive-examples/examples/example-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Dashboard component", "description": "This example shows how to use the Dashboard component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-datefilter/package.json b/examples/sdk-interactive-examples/examples/example-datefilter/package.json index 823c711f077..e837b656444 100644 --- a/examples/sdk-interactive-examples/examples/example-datefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-datefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-datefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "DateFilter", "description": "Example demonstrates usage of Date Filter component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json index 6afa4448f4d..76d8c52ace5 100644 --- a/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json +++ b/examples/sdk-interactive-examples/examples/example-dependentfilters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-dependentfilters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Dependent Filters Example", "description": "This example demonstrates how to use multiple attribute filters linked together to filter data in a visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-execute/package.json b/examples/sdk-interactive-examples/examples/example-execute/package.json index bf7f6a7e518..d860a0f63ab 100644 --- a/examples/sdk-interactive-examples/examples/example-execute/package.json +++ b/examples/sdk-interactive-examples/examples/example-execute/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-execute", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Execute", "description": "This example demonstrates using Execute component and build custom visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-granularity/package.json b/examples/sdk-interactive-examples/examples/example-granularity/package.json index 9a5435d7d44..e8b418e7512 100644 --- a/examples/sdk-interactive-examples/examples/example-granularity/package.json +++ b/examples/sdk-interactive-examples/examples/example-granularity/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-granularity", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Granularity", "description": "This example exmplains DateFilter granularity ", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-headline/package.json b/examples/sdk-interactive-examples/examples/example-headline/package.json index 263091ad7d1..c76916dedd4 100644 --- a/examples/sdk-interactive-examples/examples/example-headline/package.json +++ b/examples/sdk-interactive-examples/examples/example-headline/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-headline", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Headline", "description": "This example shows how to use the Headline component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-pivottable/package.json b/examples/sdk-interactive-examples/examples/example-pivottable/package.json index 9d5b957aee5..2de50edd4f5 100644 --- a/examples/sdk-interactive-examples/examples/example-pivottable/package.json +++ b/examples/sdk-interactive-examples/examples/example-pivottable/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-pivottable", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "PivotTable", "description": "Basic PivotTable manipulation.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json index cdb8c39bcab..005b905e226 100644 --- a/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json +++ b/examples/sdk-interactive-examples/examples/example-relativedatefilter/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-relativedatefilter", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "RelativeDateFilter", "description": "Example demonstrates how to set relative DateFilter for visualization.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/examples/example-repeater/package.json b/examples/sdk-interactive-examples/examples/example-repeater/package.json index 34e861fc46a..e5892a07664 100644 --- a/examples/sdk-interactive-examples/examples/example-repeater/package.json +++ b/examples/sdk-interactive-examples/examples/example-repeater/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-example-repeater", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "title": "Repeater Example", "description": "This example demonstrates how to use Repeater component.", "author": "GoodData", diff --git a/examples/sdk-interactive-examples/package.json b/examples/sdk-interactive-examples/package.json index 2d1f18807f6..6a4845df241 100644 --- a/examples/sdk-interactive-examples/package.json +++ b/examples/sdk-interactive-examples/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-interactive-examples", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData React interactive examples", "license": "LicenseRef-LICENSE", "author": "GoodData Corporation", diff --git a/libs/api-client-tiger/package.json b/libs/api-client-tiger/package.json index 11d94a80fa0..79a422d2b48 100644 --- a/libs/api-client-tiger/package.json +++ b/libs/api-client-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/api-client-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "API Client for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-backend-base/package.json b/libs/sdk-backend-base/package.json index ac5d8bb7700..62fbb8a745f 100644 --- a/libs/sdk-backend-base/package.json +++ b/libs/sdk-backend-base/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-base", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData.UI SDK - Base for backend implementations", "repository": { diff --git a/libs/sdk-backend-mockingbird/package.json b/libs/sdk-backend-mockingbird/package.json index ca2ba958173..745e4b924ab 100644 --- a/libs/sdk-backend-mockingbird/package.json +++ b/libs/sdk-backend-mockingbird/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-mockingbird", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Mock GoodData Backend SPI implementation", "repository": { diff --git a/libs/sdk-backend-spi/package.json b/libs/sdk-backend-spi/package.json index a6a2a0859d5..611ff2a3a22 100644 --- a/libs/sdk-backend-spi/package.json +++ b/libs/sdk-backend-spi/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-spi", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI abstraction interfaces", "repository": { diff --git a/libs/sdk-backend-tiger/package.json b/libs/sdk-backend-tiger/package.json index c56c5754277..b14b7ecaf06 100644 --- a/libs/sdk-backend-tiger/package.json +++ b/libs/sdk-backend-tiger/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-backend-tiger", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Backend SPI implementation for GoodData Cloud and GoodData.CN", "repository": { diff --git a/libs/sdk-embedding/package.json b/libs/sdk-embedding/package.json index 567e8698b71..67516cac295 100644 --- a/libs/sdk-embedding/package.json +++ b/libs/sdk-embedding/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-embedding", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Embedding APIs", "repository": { diff --git a/libs/sdk-model/package.json b/libs/sdk-model/package.json index 75e521d4253..ecde9d5e2de 100644 --- a/libs/sdk-model/package.json +++ b/libs/sdk-model/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-model", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Model definitions used by UI components and Backend SPI and its implementations", "repository": { diff --git a/libs/sdk-ui-all/package.json b/libs/sdk-ui-all/package.json index 06bbf4f5586..a141df5acad 100644 --- a/libs/sdk-ui-all/package.json +++ b/libs/sdk-ui-all/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-all", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - All-In-One", "repository": { diff --git a/libs/sdk-ui-charts/package.json b/libs/sdk-ui-charts/package.json index 1970ad33c97..0ee9c75a637 100644 --- a/libs/sdk-ui-charts/package.json +++ b/libs/sdk-ui-charts/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-charts", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-dashboard/package.json b/libs/sdk-ui-dashboard/package.json index 141e7a2e861..6be64c63870 100644 --- a/libs/sdk-ui-dashboard/package.json +++ b/libs/sdk-ui-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-dashboard", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Dashboard Component", "repository": { "type": "git", diff --git a/libs/sdk-ui-ext/package.json b/libs/sdk-ui-ext/package.json index 55f31713b03..000a499eba7 100644 --- a/libs/sdk-ui-ext/package.json +++ b/libs/sdk-ui-ext/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-ext", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Extensions", "repository": { "type": "git", diff --git a/libs/sdk-ui-filters/package.json b/libs/sdk-ui-filters/package.json index 61b1c544776..cbf198bac4e 100644 --- a/libs/sdk-ui-filters/package.json +++ b/libs/sdk-ui-filters/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-filters", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Filter Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-gen-ai/package.json b/libs/sdk-ui-gen-ai/package.json index b831ddaf4f0..722d2aa960b 100644 --- a/libs/sdk-ui-gen-ai/package.json +++ b/libs/sdk-ui-gen-ai/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-gen-ai", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData GenAI SDK", "repository": { "type": "git", diff --git a/libs/sdk-ui-geo/package.json b/libs/sdk-ui-geo/package.json index d7a7cf1faf4..737ded8f0a1 100644 --- a/libs/sdk-ui-geo/package.json +++ b/libs/sdk-ui-geo/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-geo", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Geo Charts", "repository": { "type": "git", diff --git a/libs/sdk-ui-kit/package.json b/libs/sdk-ui-kit/package.json index b1e25c60510..acf6b287b0c 100644 --- a/libs/sdk-ui-kit/package.json +++ b/libs/sdk-ui-kit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-kit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - UI Building Components", "repository": { "type": "git", diff --git a/libs/sdk-ui-loaders/package.json b/libs/sdk-ui-loaders/package.json index 315039c1215..16be4c1e644 100644 --- a/libs/sdk-ui-loaders/package.json +++ b/libs/sdk-ui-loaders/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-loaders", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK Runtime Component Loaders", "repository": { "type": "git", diff --git a/libs/sdk-ui-pivot/package.json b/libs/sdk-ui-pivot/package.json index fc1de43c8f9..6cb89b66aeb 100644 --- a/libs/sdk-ui-pivot/package.json +++ b/libs/sdk-ui-pivot/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-pivot", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Pivot Table", "repository": { "type": "git", diff --git a/libs/sdk-ui-semantic-search/package.json b/libs/sdk-ui-semantic-search/package.json index 9013910f154..5b26ce2c961 100644 --- a/libs/sdk-ui-semantic-search/package.json +++ b/libs/sdk-ui-semantic-search/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-semantic-search", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK TypeScript & React skeleton", "repository": { "type": "git", diff --git a/libs/sdk-ui-theme-provider/package.json b/libs/sdk-ui-theme-provider/package.json index 207ec67194a..9490251a03d 100644 --- a/libs/sdk-ui-theme-provider/package.json +++ b/libs/sdk-ui-theme-provider/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-theme-provider", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData SDK - Theme provider", "repository": { "type": "git", diff --git a/libs/sdk-ui-vis-commons/package.json b/libs/sdk-ui-vis-commons/package.json index 823841c3309..03cadd72462 100644 --- a/libs/sdk-ui-vis-commons/package.json +++ b/libs/sdk-ui-vis-commons/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui-vis-commons", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - common functionality for different types of visualizations", "repository": { "type": "git", diff --git a/libs/sdk-ui/package.json b/libs/sdk-ui/package.json index 4a4f682c2de..d3ef7bad78a 100644 --- a/libs/sdk-ui/package.json +++ b/libs/sdk-ui/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/sdk-ui", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "description": "GoodData.UI SDK - Core", "repository": { "type": "git", diff --git a/libs/util/package.json b/libs/util/package.json index 7666092ff13..2e10d44c143 100644 --- a/libs/util/package.json +++ b/libs/util/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/util", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Utility Functions", "repository": { diff --git a/tools/app-toolkit/package.json b/tools/app-toolkit/package.json index 555134e5bca..2ac3410c96e 100644 --- a/tools/app-toolkit/package.json +++ b/tools/app-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/app-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "CLI with useful tools for creating and maintaining GoodData web applications.", "repository": { diff --git a/tools/catalog-export/package.json b/tools/catalog-export/package.json index 57740d815d5..96ae516e6b9 100644 --- a/tools/catalog-export/package.json +++ b/tools/catalog-export/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/catalog-export", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Catalog Export tooling", "repository": { diff --git a/tools/i18n-toolkit/package.json b/tools/i18n-toolkit/package.json index 1f0cab71771..53ad48e8d19 100644 --- a/tools/i18n-toolkit/package.json +++ b/tools/i18n-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/i18n-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "Localization validator to validate localization complexity and intl and html format.", "repository": { diff --git a/tools/mock-handling/package.json b/tools/mock-handling/package.json index 3adab33b8f4..6437f9725ba 100644 --- a/tools/mock-handling/package.json +++ b/tools/mock-handling/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/mock-handling", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK Mock data capture and management tool", "repository": { diff --git a/tools/plugin-toolkit/package.json b/tools/plugin-toolkit/package.json index af6b88dc254..0a52a5b9593 100644 --- a/tools/plugin-toolkit/package.json +++ b/tools/plugin-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/plugin-toolkit", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData Set of Tools for working with Plugins", "repository": { diff --git a/tools/reference-workspace/package.json b/tools/reference-workspace/package.json index 4b1df2d3f2d..c24ea69dae9 100644 --- a/tools/reference-workspace/package.json +++ b/tools/reference-workspace/package.json @@ -1,6 +1,6 @@ { "name": "@gooddata/reference-workspace", - "version": "10.17.0-beta.0", + "version": "10.18.0-alpha.15", "author": "GoodData", "description": "GoodData SDK - Reference Workspace for tests", "repository": {