diff --git a/.github/workflows/airflow-plugin.yml b/.github/workflows/airflow-plugin.yml
index 66a08dc63aa0de..1fdfc52857b011 100644
--- a/.github/workflows/airflow-plugin.yml
+++ b/.github/workflows/airflow-plugin.yml
@@ -34,29 +34,21 @@ jobs:
include:
# Note: this should be kept in sync with tox.ini.
- python-version: "3.8"
- extra_pip_requirements: "apache-airflow~=2.1.4"
- extra_pip_extras: plugin-v1
- - python-version: "3.8"
- extra_pip_requirements: "apache-airflow~=2.2.4"
- extra_pip_extras: plugin-v1
+ extra_pip_requirements: "apache-airflow~=2.3.4"
+ extra_pip_extras: test-airflow23
- python-version: "3.10"
extra_pip_requirements: "apache-airflow~=2.4.3"
- extra_pip_extras: plugin-v2,test-airflow24
+ extra_pip_extras: test-airflow24
- python-version: "3.10"
extra_pip_requirements: "apache-airflow~=2.6.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.6.3/constraints-3.10.txt"
- extra_pip_extras: plugin-v2
- python-version: "3.10"
extra_pip_requirements: "apache-airflow~=2.7.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.7.3/constraints-3.10.txt"
- extra_pip_extras: plugin-v2
- python-version: "3.10"
extra_pip_requirements: "apache-airflow~=2.8.1 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.8.1/constraints-3.10.txt"
- extra_pip_extras: plugin-v2
- python-version: "3.11"
extra_pip_requirements: "apache-airflow~=2.9.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.9.3/constraints-3.11.txt"
- extra_pip_extras: plugin-v2
- python-version: "3.11"
- extra_pip_requirements: "apache-airflow~=2.10.2 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.11.txt"
- extra_pip_extras: plugin-v2
+ extra_pip_requirements: "apache-airflow~=2.10.3 -c https://raw.githubusercontent.com/apache/airflow/constraints-2.10.3/constraints-3.11.txt"
fail-fast: false
steps:
- name: Set up JDK 17
diff --git a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/Container/ContainerSelectModal.tsx b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/Container/ContainerSelectModal.tsx
index 681f89831b92c4..818d75c37696dc 100644
--- a/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/Container/ContainerSelectModal.tsx
+++ b/datahub-web-react/src/app/entity/shared/containers/profile/sidebar/Container/ContainerSelectModal.tsx
@@ -5,6 +5,8 @@ import { useGetSearchResultsLazyQuery } from '../../../../../../../graphql/searc
import { Container, Entity, EntityType } from '../../../../../../../types.generated';
import { useEnterKeyListener } from '../../../../../../shared/useEnterKeyListener';
import { useEntityRegistry } from '../../../../../../useEntityRegistry';
+import { getParentEntities } from '../../../../../../search/filters/utils';
+import ParentEntities from '../../../../../../search/filters/ParentEntities';
type Props = {
onCloseModal: () => void;
@@ -26,7 +28,7 @@ const StyleTag = styled(Tag)`
align-items: center;
`;
-const PreviewImage = styled.img`
+export const PreviewImage = styled.img`
max-height: 18px;
width: auto;
object-fit: contain;
@@ -34,6 +36,10 @@ const PreviewImage = styled.img`
margin-right: 4px;
`;
+export const ParentWrapper = styled.div`
+ max-width: 400px;
+`;
+
export const ContainerSelectModal = ({ onCloseModal, defaultValues, onOkOverride, titleOverride }: Props) => {
const [containerSearch, { data: platforSearchData }] = useGetSearchResultsLazyQuery();
const entityRegistry = useEntityRegistry();
@@ -65,10 +71,16 @@ export const ContainerSelectModal = ({ onCloseModal, defaultValues, onOkOverride
// Renders a search result in the select dropdown.
const renderSearchResult = (entity: Container) => {
const displayName = entityRegistry.getDisplayName(EntityType.Container, entity);
+ const parentEntities: Entity[] = getParentEntities(entity as Entity) || [];
const truncatedDisplayName = displayName.length > 25 ? `${displayName.slice(0, 25)}...` : displayName;
return (
+ {parentEntities.length > 0 && (
+
+
+
+ )}
{truncatedDisplayName}
diff --git a/datahub-web-react/src/app/search/SearchFilterLabel.tsx b/datahub-web-react/src/app/search/SearchFilterLabel.tsx
index 5a0e75cc2ae1ce..2ed2d4608de0d2 100644
--- a/datahub-web-react/src/app/search/SearchFilterLabel.tsx
+++ b/datahub-web-react/src/app/search/SearchFilterLabel.tsx
@@ -23,6 +23,9 @@ import CustomAvatar from '../shared/avatar/CustomAvatar';
import { IconStyleType } from '../entity/Entity';
import { formatNumber } from '../shared/formatNumber';
import useGetBrowseV2LabelOverride from './filters/useGetBrowseV2LabelOverride';
+import { getParentEntities } from './filters/utils';
+import { ParentWrapper } from '../entity/shared/containers/profile/sidebar/Container/ContainerSelectModal';
+import ParentEntities from './filters/ParentEntities';
type Props = {
field: string;
@@ -157,11 +160,17 @@ export const SearchFilterLabel = ({ field, value, entity, count, hideCount }: Pr
if (entity?.type === EntityType.Container) {
const container = entity as Container;
const displayName = entityRegistry.getDisplayName(EntityType.Container, container);
+ const parentEntities: Entity[] = getParentEntities(container as Entity) || [];
const truncatedDisplayName = displayName.length > 25 ? `${displayName.slice(0, 25)}...` : displayName;
return (
{!!container.platform?.properties?.logoUrl && (
-
+ <>
+
+
+
+
+ >
)}
{truncatedDisplayName}
diff --git a/datahub-web-react/src/app/search/SimpleSearchFilters.tsx b/datahub-web-react/src/app/search/SimpleSearchFilters.tsx
index 416b04403723f5..877efb55fcf828 100644
--- a/datahub-web-react/src/app/search/SimpleSearchFilters.tsx
+++ b/datahub-web-react/src/app/search/SimpleSearchFilters.tsx
@@ -4,7 +4,12 @@ import { FacetFilterInput, FacetMetadata } from '../../types.generated';
import { FilterScenarioType } from './filters/render/types';
import { useFilterRendererRegistry } from './filters/render/useFilterRenderer';
import { SimpleSearchFilter } from './SimpleSearchFilter';
-import { ENTITY_FILTER_NAME, ENTITY_INDEX_FILTER_NAME, LEGACY_ENTITY_FILTER_NAME } from './utils/constants';
+import {
+ DEGREE_FILTER_NAME,
+ ENTITY_FILTER_NAME,
+ ENTITY_INDEX_FILTER_NAME,
+ LEGACY_ENTITY_FILTER_NAME,
+} from './utils/constants';
const TOP_FILTERS = ['degree', ENTITY_FILTER_NAME, 'platform', 'tags', 'glossaryTerms', 'domains', 'owners'];
@@ -43,6 +48,15 @@ export const SimpleSearchFilters = ({ facets, selectedFilters, onFilterSelect, l
: filter,
)
.filter((filter) => filter.field !== field || !(filter.values?.length === 0));
+
+ // Do not let user unselect all degree filters
+ if (field === DEGREE_FILTER_NAME && !selected) {
+ const hasDegreeFilter = newFilters.find((filter) => filter.field === DEGREE_FILTER_NAME);
+ if (!hasDegreeFilter) {
+ return;
+ }
+ }
+
setCachedProps({ ...cachedProps, selectedFilters: newFilters });
onFilterSelect(newFilters);
};
diff --git a/datahub-web-react/src/app/search/filters/FilterOption.tsx b/datahub-web-react/src/app/search/filters/FilterOption.tsx
index 3749f44cbf6718..50b78c7f0685c9 100644
--- a/datahub-web-react/src/app/search/filters/FilterOption.tsx
+++ b/datahub-web-react/src/app/search/filters/FilterOption.tsx
@@ -8,6 +8,7 @@ import { generateColor } from '../../entity/shared/components/styled/StyledTag';
import { ANTD_GRAY } from '../../entity/shared/constants';
import { useEntityRegistry } from '../../useEntityRegistry';
import {
+ CONTAINER_FILTER_NAME,
ENTITY_SUB_TYPE_FILTER_NAME,
MAX_COUNT_VAL,
PLATFORM_FILTER_NAME,
@@ -125,7 +126,7 @@ export default function FilterOption({
const { field, value, count, entity } = filterOption;
const entityRegistry = useEntityRegistry();
const { icon, label } = getFilterIconAndLabel(field, value, entityRegistry, entity || null, 14);
- const shouldShowIcon = field === PLATFORM_FILTER_NAME && icon !== null;
+ const shouldShowIcon = (field === PLATFORM_FILTER_NAME || field === CONTAINER_FILTER_NAME) && icon !== null;
const shouldShowTagColor = field === TAGS_FILTER_NAME && entity?.type === EntityType.Tag;
const isSubTypeFilter = field === TYPE_NAMES_FILTER_NAME;
const parentEntities: Entity[] = getParentEntities(entity as Entity) || [];
diff --git a/datahub-web-react/src/app/search/filters/utils.tsx b/datahub-web-react/src/app/search/filters/utils.tsx
index f115277a049674..bd747777d11175 100644
--- a/datahub-web-react/src/app/search/filters/utils.tsx
+++ b/datahub-web-react/src/app/search/filters/utils.tsx
@@ -20,6 +20,7 @@ import {
FacetFilterInput,
FacetMetadata,
GlossaryTerm,
+ Container,
} from '../../../types.generated';
import { IconStyleType } from '../../entity/Entity';
import {
@@ -186,6 +187,15 @@ export function getFilterIconAndLabel(
entityRegistry.getIcon(EntityType.DataPlatform, size || 12, IconStyleType.ACCENT, ANTD_GRAY[9])
);
label = filterEntity ? entityRegistry.getDisplayName(EntityType.DataPlatform, filterEntity) : filterValue;
+ } else if (filterField === CONTAINER_FILTER_NAME) {
+ // Scenario where the filter entity exists and filterField is container
+ const logoUrl = (filterEntity as Container)?.platform?.properties?.logoUrl;
+ icon = logoUrl ? (
+
+ ) : (
+ entityRegistry.getIcon(EntityType.DataPlatform, size || 12, IconStyleType.ACCENT, ANTD_GRAY[9])
+ );
+ label = entityRegistry.getDisplayName(EntityType.Container, filterEntity);
} else if (filterField === BROWSE_PATH_V2_FILTER_NAME) {
icon = ;
label = getLastBrowseEntryFromFilterValue(filterValue);
@@ -196,6 +206,7 @@ export function getFilterIconAndLabel(
filterEntity,
size,
);
+
icon = newIcon;
label = newLabel;
} else {
@@ -344,6 +355,9 @@ export function getParentEntities(entity: Entity): Entity[] | null {
if (entity.type === EntityType.Domain) {
return (entity as Domain).parentDomains?.domains || [];
}
+ if (entity.type === EntityType.Container) {
+ return (entity as Container).parentContainers?.containers || [];
+ }
return null;
}
diff --git a/datahub-web-react/src/graphql/fragments.graphql b/datahub-web-react/src/graphql/fragments.graphql
index 67dbdbbb22f309..ade63f151d1a09 100644
--- a/datahub-web-react/src/graphql/fragments.graphql
+++ b/datahub-web-react/src/graphql/fragments.graphql
@@ -1010,6 +1010,7 @@ fragment entityContainer on Container {
fragment parentContainerFields on Container {
urn
+ type
properties {
name
}
diff --git a/datahub-web-react/src/graphql/search.graphql b/datahub-web-react/src/graphql/search.graphql
index 4a10d5fe250de1..3e26dd7121b72c 100644
--- a/datahub-web-react/src/graphql/search.graphql
+++ b/datahub-web-react/src/graphql/search.graphql
@@ -910,6 +910,9 @@ fragment facetFields on FacetMetadata {
properties {
name
}
+ parentContainers {
+ ...parentContainersFields
+ }
}
... on CorpUser {
username
diff --git a/docs/how/updating-datahub.md b/docs/how/updating-datahub.md
index 087e30c2e541ad..3f9de1ff2f7f9e 100644
--- a/docs/how/updating-datahub.md
+++ b/docs/how/updating-datahub.md
@@ -35,6 +35,8 @@ This file documents any backwards-incompatible changes in DataHub and assists pe
- #11701: The Fivetran `sources_to_database` field is deprecated in favor of setting directly within `sources_to_platform_instance..database`.
- #11742: For PowerBi ingestion, `use_powerbi_email` is now enabled by default when extracting ownership information.
+- #12056: The DataHub Airflow plugin no longer supports Airflow 2.1 and Airflow 2.2.
+- #12056: The DataHub Airflow plugin now defaults to the v2 plugin implementation.
### Breaking Changes
diff --git a/docs/lineage/airflow.md b/docs/lineage/airflow.md
index 829c048a8f8e24..2bd58334933fb7 100644
--- a/docs/lineage/airflow.md
+++ b/docs/lineage/airflow.md
@@ -13,14 +13,14 @@ The DataHub Airflow plugin supports:
- Task run information, including task successes and failures.
- Manual lineage annotations using `inlets` and `outlets` on Airflow operators.
-There's two actively supported implementations of the plugin, with different Airflow version support.
+There's two implementations of the plugin, with different Airflow version support.
-| Approach | Airflow Version | Notes |
-| --------- | --------------- | --------------------------------------------------------------------------- |
-| Plugin v2 | 2.3.4+ | Recommended. Requires Python 3.8+ |
-| Plugin v1 | 2.1 - 2.8 | No automatic lineage extraction; may not extract lineage if the task fails. |
+| Approach | Airflow Versions | Notes |
+| --------- | ---------------- | --------------------------------------------------------------------------------------- |
+| Plugin v2 | 2.3.4+ | Recommended. Requires Python 3.8+ |
+| Plugin v1 | 2.3 - 2.8 | Deprecated. No automatic lineage extraction; may not extract lineage if the task fails. |
-If you're using Airflow older than 2.1, it's possible to use the v1 plugin with older versions of `acryl-datahub-airflow-plugin`. See the [compatibility section](#compatibility) for more details.
+If you're using Airflow older than 2.3, it's possible to use the v1 plugin with older versions of `acryl-datahub-airflow-plugin`. See the [compatibility section](#compatibility) for more details.
@@ -29,7 +29,7 @@ If you're using Airflow older than 2.1, it's possible to use the v1 plugin with
### Installation
-The v2 plugin requires Airflow 2.3+ and Python 3.8+. If you don't meet these requirements, use the v1 plugin instead.
+The v2 plugin requires Airflow 2.3+ and Python 3.8+. If you don't meet these requirements, see the [compatibility section](#compatibility) for other options.
```shell
pip install 'acryl-datahub-airflow-plugin[plugin-v2]'
@@ -84,9 +84,10 @@ enabled = True # default
### Installation
-The v1 plugin requires Airflow 2.1 - 2.8 and Python 3.8+. If you're on older versions, it's still possible to use an older version of the plugin. See the [compatibility section](#compatibility) for more details.
+The v1 plugin requires Airflow 2.3 - 2.8 and Python 3.8+. If you're on older versions, it's still possible to use an older version of the plugin. See the [compatibility section](#compatibility) for more details.
-If you're using Airflow 2.3+, we recommend using the v2 plugin instead. If you need to use the v1 plugin with Airflow 2.3+, you must also set the environment variable `DATAHUB_AIRFLOW_PLUGIN_USE_V1_PLUGIN=true`.
+Note that the v1 plugin is less featureful than the v2 plugin, and is overall not actively maintained.
+Since datahub v0.15.0, the v2 plugin has been the default. If you need to use the v1 plugin with `acryl-datahub-airflow-plugin` v0.15.0+, you must also set the environment variable `DATAHUB_AIRFLOW_PLUGIN_USE_V1_PLUGIN=true`.
```shell
pip install 'acryl-datahub-airflow-plugin[plugin-v1]'
@@ -340,11 +341,12 @@ The solution is to upgrade `acryl-datahub-airflow-plugin>=0.12.0.4` or upgrade `
## Compatibility
-We no longer officially support Airflow <2.1. However, you can use older versions of `acryl-datahub-airflow-plugin` with older versions of Airflow.
-Both of these options support Python 3.7+.
+We no longer officially support Airflow <2.3. However, you can use older versions of `acryl-datahub-airflow-plugin` with older versions of Airflow.
+The first two options support Python 3.7+, and the last option supports Python 3.8+.
- Airflow 1.10.x, use DataHub plugin v1 with acryl-datahub-airflow-plugin <= 0.9.1.0.
- Airflow 2.0.x, use DataHub plugin v1 with acryl-datahub-airflow-plugin <= 0.11.0.1.
+- Airflow 2.2.x, use DataHub plugin v2 with acryl-datahub-airflow-plugin <= 0.14.1.5.
DataHub also previously supported an Airflow [lineage backend](https://airflow.apache.org/docs/apache-airflow/2.2.0/lineage.html#lineage-backend) implementation. While the implementation is still in our codebase, it is deprecated and will be removed in a future release.
Note that the lineage backend did not support automatic lineage extraction, did not capture task failures, and did not work in AWS MWAA.
diff --git a/metadata-ingestion-modules/airflow-plugin/build.gradle b/metadata-ingestion-modules/airflow-plugin/build.gradle
index f30858ba6a14ef..68a35c0dfc417b 100644
--- a/metadata-ingestion-modules/airflow-plugin/build.gradle
+++ b/metadata-ingestion-modules/airflow-plugin/build.gradle
@@ -13,7 +13,7 @@ if (!project.hasProperty("extra_pip_requirements")) {
ext.extra_pip_requirements = ""
}
if (!project.hasProperty("extra_pip_extras")) {
- ext.extra_pip_extras = "plugin-v2"
+ ext.extra_pip_extras = ""
}
// If extra_pip_extras is non-empty, we need to add a comma to the beginning of the string.
if (extra_pip_extras != "") {
diff --git a/metadata-ingestion-modules/airflow-plugin/setup.py b/metadata-ingestion-modules/airflow-plugin/setup.py
index 02a0bbb6022e04..3209233184d55a 100644
--- a/metadata-ingestion-modules/airflow-plugin/setup.py
+++ b/metadata-ingestion-modules/airflow-plugin/setup.py
@@ -24,8 +24,8 @@ def get_long_description():
base_requirements = {
f"acryl-datahub[datahub-rest]{_self_pin}",
- # Actual dependencies.
- "apache-airflow >= 2.0.2",
+ # We require Airflow 2.3.x, since we need the new DAG listener API.
+ "apache-airflow>=2.3.0",
}
plugins: Dict[str, Set[str]] = {
@@ -44,12 +44,13 @@ def get_long_description():
# We remain restrictive on the versions allowed here to prevent
# us from being broken by backwards-incompatible changes in the
# underlying package.
- "openlineage-airflow>=1.2.0,<=1.22.0",
+ "openlineage-airflow>=1.2.0,<=1.25.0",
},
}
-# Include datahub-rest in the base requirements.
+# Require some plugins by default.
base_requirements.update(plugins["datahub-rest"])
+base_requirements.update(plugins["plugin-v2"])
mypy_stubs = {
@@ -109,6 +110,11 @@ def get_long_description():
"apache-airflow-providers-sqlite",
}
per_version_test_requirements = {
+ "test-airflow23": {
+ "pendulum<3.0",
+ "Flask-Session<0.6.0",
+ "connexion<3.0",
+ },
"test-airflow24": {
"pendulum<3.0",
"Flask-Session<0.6.0",
diff --git a/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/_airflow_shims.py b/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/_airflow_shims.py
index c1e2dd4cc422d0..d86a46e042e8f8 100644
--- a/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/_airflow_shims.py
+++ b/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/_airflow_shims.py
@@ -46,7 +46,7 @@ def get_task_inlets(operator: "Operator") -> List:
return operator._inlets # type: ignore[attr-defined, union-attr]
if hasattr(operator, "get_inlet_defs"):
return operator.get_inlet_defs() # type: ignore[attr-defined]
- return operator.inlets
+ return operator.inlets or []
def get_task_outlets(operator: "Operator") -> List:
@@ -56,7 +56,7 @@ def get_task_outlets(operator: "Operator") -> List:
return operator._outlets # type: ignore[attr-defined, union-attr]
if hasattr(operator, "get_outlet_defs"):
return operator.get_outlet_defs()
- return operator.outlets
+ return operator.outlets or []
__all__ = [
diff --git a/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/datahub_listener.py b/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/datahub_listener.py
index e00cf51ea456cc..aa7b3108f64f1e 100644
--- a/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/datahub_listener.py
+++ b/metadata-ingestion-modules/airflow-plugin/src/datahub_airflow_plugin/datahub_listener.py
@@ -74,7 +74,7 @@ def hookimpl(f: _F) -> _F: # type: ignore[misc] # noqa: F811
"1",
)
_RUN_IN_THREAD_TIMEOUT = float(
- os.getenv("DATAHUB_AIRFLOW_PLUGIN_RUN_IN_THREAD_TIMEOUT", 15)
+ os.getenv("DATAHUB_AIRFLOW_PLUGIN_RUN_IN_THREAD_TIMEOUT", 10)
)
_DATAHUB_CLEANUP_DAG = "Datahub_Cleanup"
@@ -102,6 +102,7 @@ def get_airflow_plugin_listener() -> Optional["DataHubListener"]:
"capture_tags": plugin_config.capture_tags_info,
"capture_ownership": plugin_config.capture_ownership_info,
"enable_extractors": plugin_config.enable_extractors,
+ "render_templates": plugin_config.render_templates,
"disable_openlineage_plugin": plugin_config.disable_openlineage_plugin,
},
)
diff --git a/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_basic_iolets.json b/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_basic_iolets.json
index fd10f858d00fb6..4c21b7ed4000dc 100644
--- a/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_basic_iolets.json
+++ b/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_basic_iolets.json
@@ -14,7 +14,7 @@
"fileloc": "",
"is_paused_upon_creation": "None",
"start_date": "DateTime(2023, 1, 1, 0, 0, 0, tzinfo=Timezone('UTC'))",
- "tags": "None",
+ "tags": "[]",
"timezone": "Timezone('UTC')"
},
"externalUrl": "http://airflow.example.com/tree?dag_id=basic_iolets",
@@ -83,7 +83,7 @@
"execution_timeout": "None",
"sla": "None",
"task_id": "'run_data_task'",
- "trigger_rule": "'all_success'",
+ "trigger_rule": "",
"wait_for_downstream": "False",
"downstream_task_ids": "[]",
"inlets": "[]",
@@ -246,6 +246,46 @@
}
}
},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,basic_iolets,prod),run_data_task)",
+ "changeType": "UPSERT",
+ "aspectName": "dataJobInfo",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "depends_on_past": "False",
+ "email": "None",
+ "label": "'run_data_task'",
+ "execution_timeout": "None",
+ "sla": "None",
+ "task_id": "'run_data_task'",
+ "trigger_rule": "",
+ "wait_for_downstream": "False",
+ "downstream_task_ids": "[]",
+ "inlets": "[]",
+ "outlets": "[]"
+ },
+ "externalUrl": "http://airflow.example.com/taskinstance/list/?flt1_dag_id_equals=basic_iolets&_flt_3_task_id=run_data_task",
+ "name": "run_data_task",
+ "type": {
+ "string": "COMMAND"
+ },
+ "env": "PROD"
+ }
+ }
+},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,basic_iolets,prod),run_data_task)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ }
+},
{
"entityType": "dataJob",
"entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,basic_iolets,prod),run_data_task)",
@@ -402,16 +442,16 @@
"state": "success",
"operator": "BashOperator",
"priority_weight": "1",
- "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_data_task&dag_id=basic_iolets",
+ "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_data_task&dag_id=basic_iolets&map_index=-1",
"orchestrator": "airflow",
"dag_id": "basic_iolets",
"task_id": "run_data_task"
},
- "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_data_task&dag_id=basic_iolets",
+ "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_data_task&dag_id=basic_iolets&map_index=-1",
"name": "basic_iolets_run_data_task_manual_run_test",
"type": "BATCH_AD_HOC",
"created": {
- "time": 1717180290951,
+ "time": 1733529136396,
"actor": "urn:li:corpuser:datahub"
}
}
@@ -544,7 +584,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180290951,
+ "timestampMillis": 1733529136396,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
@@ -561,7 +601,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180291140,
+ "timestampMillis": 1733529137385,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
diff --git a/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_simple_dag.json b/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_simple_dag.json
index 5c5be6848fd839..b6ab1ff9120f25 100644
--- a/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_simple_dag.json
+++ b/metadata-ingestion-modules/airflow-plugin/tests/integration/goldens/v1_simple_dag.json
@@ -14,7 +14,7 @@
"fileloc": "",
"is_paused_upon_creation": "None",
"start_date": "DateTime(2023, 1, 1, 0, 0, 0, tzinfo=Timezone('UTC'))",
- "tags": "None",
+ "tags": "[]",
"timezone": "Timezone('UTC')"
},
"externalUrl": "http://airflow.example.com/tree?dag_id=simple_dag",
@@ -84,7 +84,7 @@
"execution_timeout": "None",
"sla": "None",
"task_id": "'task_1'",
- "trigger_rule": "'all_success'",
+ "trigger_rule": "",
"wait_for_downstream": "False",
"downstream_task_ids": "['run_another_data_task']",
"inlets": "[]",
@@ -205,6 +205,46 @@
}
}
},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),task_1)",
+ "changeType": "UPSERT",
+ "aspectName": "dataJobInfo",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "depends_on_past": "False",
+ "email": "None",
+ "label": "'task_1'",
+ "execution_timeout": "None",
+ "sla": "None",
+ "task_id": "'task_1'",
+ "trigger_rule": "",
+ "wait_for_downstream": "False",
+ "downstream_task_ids": "['run_another_data_task']",
+ "inlets": "[]",
+ "outlets": "[]"
+ },
+ "externalUrl": "http://airflow.example.com/taskinstance/list/?flt1_dag_id_equals=simple_dag&_flt_3_task_id=task_1",
+ "name": "task_1",
+ "type": {
+ "string": "COMMAND"
+ },
+ "env": "PROD"
+ }
+ }
+},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),task_1)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ }
+},
{
"entityType": "dataJob",
"entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),task_1)",
@@ -319,16 +359,16 @@
"state": "success",
"operator": "BashOperator",
"priority_weight": "2",
- "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=task_1&dag_id=simple_dag",
+ "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=task_1&dag_id=simple_dag&map_index=-1",
"orchestrator": "airflow",
"dag_id": "simple_dag",
"task_id": "task_1"
},
- "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=task_1&dag_id=simple_dag",
+ "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=task_1&dag_id=simple_dag&map_index=-1",
"name": "simple_dag_task_1_manual_run_test",
"type": "BATCH_AD_HOC",
"created": {
- "time": 1717180227827,
+ "time": 1733528983395,
"actor": "urn:li:corpuser:datahub"
}
}
@@ -419,7 +459,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180227827,
+ "timestampMillis": 1733528983395,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
@@ -436,7 +476,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180228022,
+ "timestampMillis": 1733528984355,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
@@ -449,6 +489,42 @@
}
}
},
+{
+ "entityType": "dataFlow",
+ "entityUrn": "urn:li:dataFlow:(airflow,simple_dag,prod)",
+ "changeType": "UPSERT",
+ "aspectName": "dataFlowInfo",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "_access_control": "None",
+ "catchup": "False",
+ "description": "'A simple DAG that runs a few fake data tasks.'",
+ "doc_md": "None",
+ "fileloc": "",
+ "is_paused_upon_creation": "None",
+ "start_date": "DateTime(2023, 1, 1, 0, 0, 0, tzinfo=Timezone('UTC'))",
+ "tags": "[]",
+ "timezone": "Timezone('UTC')"
+ },
+ "externalUrl": "http://airflow.example.com/tree?dag_id=simple_dag",
+ "name": "simple_dag",
+ "description": "A simple DAG that runs a few fake data tasks.",
+ "env": "PROD"
+ }
+ }
+},
+{
+ "entityType": "dataFlow",
+ "entityUrn": "urn:li:dataFlow:(airflow,simple_dag,prod)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ }
+},
{
"entityType": "dataFlow",
"entityUrn": "urn:li:dataFlow:(airflow,simple_dag,prod)",
@@ -498,7 +574,7 @@
"execution_timeout": "None",
"sla": "None",
"task_id": "'run_another_data_task'",
- "trigger_rule": "'all_success'",
+ "trigger_rule": "",
"wait_for_downstream": "False",
"downstream_task_ids": "[]",
"inlets": "[]",
@@ -575,6 +651,46 @@
}
}
},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),run_another_data_task)",
+ "changeType": "UPSERT",
+ "aspectName": "dataJobInfo",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "depends_on_past": "False",
+ "email": "None",
+ "label": "'run_another_data_task'",
+ "execution_timeout": "None",
+ "sla": "None",
+ "task_id": "'run_another_data_task'",
+ "trigger_rule": "",
+ "wait_for_downstream": "False",
+ "downstream_task_ids": "[]",
+ "inlets": "[]",
+ "outlets": "[]"
+ },
+ "externalUrl": "http://airflow.example.com/taskinstance/list/?flt1_dag_id_equals=simple_dag&_flt_3_task_id=run_another_data_task",
+ "name": "run_another_data_task",
+ "type": {
+ "string": "COMMAND"
+ },
+ "env": "PROD"
+ }
+ }
+},
+{
+ "entityType": "dataJob",
+ "entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),run_another_data_task)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ }
+},
{
"entityType": "dataJob",
"entityUrn": "urn:li:dataJob:(urn:li:dataFlow:(airflow,simple_dag,prod),run_another_data_task)",
@@ -645,16 +761,16 @@
"state": "success",
"operator": "BashOperator",
"priority_weight": "1",
- "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_another_data_task&dag_id=simple_dag",
+ "log_url": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_another_data_task&dag_id=simple_dag&map_index=-1",
"orchestrator": "airflow",
"dag_id": "simple_dag",
"task_id": "run_another_data_task"
},
- "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_another_data_task&dag_id=simple_dag",
+ "externalUrl": "http://airflow.example.com/log?execution_date=2023-09-27T21%3A34%3A38%2B00%3A00&task_id=run_another_data_task&dag_id=simple_dag&map_index=-1",
"name": "simple_dag_run_another_data_task_manual_run_test",
"type": "BATCH_AD_HOC",
"created": {
- "time": 1717180231676,
+ "time": 1733528992448,
"actor": "urn:li:corpuser:datahub"
}
}
@@ -679,7 +795,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180231676,
+ "timestampMillis": 1733528992448,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
@@ -696,7 +812,7 @@
"aspectName": "dataProcessInstanceRunEvent",
"aspect": {
"json": {
- "timestampMillis": 1717180231824,
+ "timestampMillis": 1733528993380,
"partitionSpec": {
"partition": "FULL_TABLE_SNAPSHOT",
"type": "FULL_TABLE"
diff --git a/metadata-ingestion-modules/airflow-plugin/tests/integration/test_plugin.py b/metadata-ingestion-modules/airflow-plugin/tests/integration/test_plugin.py
index 75bb43af1a43dd..3b2c9140e4632f 100644
--- a/metadata-ingestion-modules/airflow-plugin/tests/integration/test_plugin.py
+++ b/metadata-ingestion-modules/airflow-plugin/tests/integration/test_plugin.py
@@ -12,6 +12,7 @@
import time
from typing import Any, Iterator, Sequence
+import packaging.version
import pytest
import requests
import tenacity
@@ -20,6 +21,7 @@
from datahub.testing.compare_metadata_json import assert_metadata_files_equal
from datahub_airflow_plugin._airflow_shims import (
+ AIRFLOW_VERSION,
HAS_AIRFLOW_DAG_LISTENER_API,
HAS_AIRFLOW_LISTENER_API,
HAS_AIRFLOW_STANDALONE_CMD,
@@ -242,6 +244,7 @@ def _run_airflow(
# Note that we could also disable the RUN_IN_THREAD entirely,
# but I want to minimize the difference between CI and prod.
"DATAHUB_AIRFLOW_PLUGIN_RUN_IN_THREAD_TIMEOUT": "30",
+ "DATAHUB_AIRFLOW_PLUGIN_USE_V1_PLUGIN": "true" if is_v1 else "false",
# Convenience settings.
"AIRFLOW__DATAHUB__LOG_LEVEL": "DEBUG",
"AIRFLOW__DATAHUB__DEBUG_EMITTER": "True",
@@ -361,7 +364,6 @@ class DagTestCase:
@pytest.mark.parametrize(
["golden_filename", "test_case", "is_v1"],
[
- # On Airflow <= 2.2, test plugin v1.
*[
pytest.param(
f"v1_{test_case.dag_id}",
@@ -369,8 +371,8 @@ class DagTestCase:
True,
id=f"v1_{test_case.dag_id}",
marks=pytest.mark.skipif(
- HAS_AIRFLOW_LISTENER_API,
- reason="Not testing plugin v1 on newer Airflow versions",
+ AIRFLOW_VERSION >= packaging.version.parse("2.4.0"),
+ reason="We only test the v1 plugin on Airflow 2.3",
),
)
for test_case in test_cases
@@ -391,10 +393,18 @@ class DagTestCase:
if HAS_AIRFLOW_DAG_LISTENER_API
else f"v2_{test_case.dag_id}_no_dag_listener"
),
- marks=pytest.mark.skipif(
- not HAS_AIRFLOW_LISTENER_API,
- reason="Cannot test plugin v2 without the Airflow plugin listener API",
- ),
+ marks=[
+ pytest.mark.skipif(
+ not HAS_AIRFLOW_LISTENER_API,
+ reason="Cannot test plugin v2 without the Airflow plugin listener API",
+ ),
+ pytest.mark.skipif(
+ AIRFLOW_VERSION < packaging.version.parse("2.4.0"),
+ reason="We skip testing the v2 plugin on Airflow 2.3 because it causes flakiness in the custom properties. "
+ "Ideally we'd just fix these, but given that Airflow 2.3 is EOL and likely going to be deprecated "
+ "soon anyways, it's not worth the effort.",
+ ),
+ ],
)
for test_case in test_cases
],
diff --git a/metadata-ingestion-modules/airflow-plugin/tox.ini b/metadata-ingestion-modules/airflow-plugin/tox.ini
index 28c0b9532bcb8e..b310ec84248f17 100644
--- a/metadata-ingestion-modules/airflow-plugin/tox.ini
+++ b/metadata-ingestion-modules/airflow-plugin/tox.ini
@@ -4,17 +4,24 @@
# and then run "tox" from this directory.
[tox]
-envlist = py38-airflow21, py38-airflow22, py310-airflow24, py310-airflow26, py310-airflow27, py310-airflow28, py311-airflow29, py311-airflow210
+envlist = py38-airflow23, py310-airflow24, py310-airflow26, py310-airflow27, py310-airflow28, py311-airflow29, py311-airflow210
[testenv]
use_develop = true
-extras = dev,integration-tests,plugin-v1
+extras =
+ dev
+ integration-tests
+ plugin-v1
+ plugin-v2
+ # For Airflow 2.3 and 2.4, add a few extra requirements.
+ airflow23: test-airflow23
+ airflow24: test-airflow24
+
deps =
# This should be kept in sync with the Github Actions matrix.
-e ../../metadata-ingestion/
# Airflow version
- airflow21: apache-airflow~=2.1.0
- airflow22: apache-airflow~=2.2.0
+ airflow23: apache-airflow~=2.3.0
airflow24: apache-airflow~=2.4.0
airflow26: apache-airflow~=2.6.0
airflow27: apache-airflow~=2.7.0
@@ -23,7 +30,8 @@ deps =
airflow210: apache-airflow~=2.10.0
# Respect the Airflow constraints files.
- # We can't make ourselves work with the constraints of Airflow < 2.3.
+ # We can't make ourselves work with the constraints of Airflow <= 2.3.
+ ; py38-airflow23: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.3.4/constraints-3.8.txt
# The Airflow 2.4 constraints file requires a version of the sqlite provider whose
# hook type is missing the `conn_name_attr` property.
; py310-airflow24: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.4.3/constraints-3.10.txt
@@ -31,7 +39,7 @@ deps =
py310-airflow27: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.7.3/constraints-3.10.txt
py310-airflow28: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.8.1/constraints-3.10.txt
py311-airflow29: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.9.3/constraints-3.11.txt
- py311-airflow210: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.10.2/constraints-3.11.txt
+ py311-airflow210: -c https://raw.githubusercontent.com/apache/airflow/constraints-2.10.3/constraints-3.11.txt
# Before pinning to the constraint files, we previously left the dependencies
# more open. There were a number of packages for which this caused issues.
@@ -54,11 +62,3 @@ deps =
; airflow24,airflow26,airflow27,airflow28: Flask-Session<0.6.0
commands =
pytest --cov-append {posargs}
-
-# For Airflow 2.4+, add the plugin-v2 extra.
-[testenv:py310-airflow24]
-extras = dev,integration-tests,plugin-v2,test-airflow24
-
-[testenv:py3{10,11}-airflow{26,27,28,29,210}]
-extras = dev,integration-tests,plugin-v2
-
diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau/tableau.py
index 197e73dca7141b..68c38d4d064612 100644
--- a/metadata-ingestion/src/datahub/ingestion/source/tableau/tableau.py
+++ b/metadata-ingestion/src/datahub/ingestion/source/tableau/tableau.py
@@ -485,6 +485,18 @@ class TableauConfig(
description="Configuration settings for ingesting Tableau groups and their capabilities as custom properties.",
)
+ ingest_hidden_assets: bool = Field(
+ True,
+ description="When enabled, hidden views and dashboards are ingested into Datahub. "
+ "If a dashboard or view is hidden in Tableau the luid is blank. Default of this config field is True.",
+ )
+
+ tags_for_hidden_assets: List[str] = Field(
+ default=[],
+ description="Tags to be added to hidden dashboards and views. If a dashboard or view is hidden in Tableau the luid is blank. "
+ "This can only be used with ingest_tags enabled as it will overwrite tags entered from the UI.",
+ )
+
# pre = True because we want to take some decision before pydantic initialize the configuration to default values
@root_validator(pre=True)
def projects_backward_compatibility(cls, values: Dict) -> Dict:
@@ -510,6 +522,20 @@ def projects_backward_compatibility(cls, values: Dict) -> Dict:
return values
+ @root_validator()
+ def validate_config_values(cls, values: Dict) -> Dict:
+ tags_for_hidden_assets = values.get("tags_for_hidden_assets")
+ ingest_tags = values.get("ingest_tags")
+ if (
+ not ingest_tags
+ and tags_for_hidden_assets
+ and len(tags_for_hidden_assets) > 0
+ ):
+ raise ValueError(
+ "tags_for_hidden_assets is only allowed with ingest_tags enabled. Be aware that this will overwrite tags entered from the UI."
+ )
+ return values
+
class WorkbookKey(ContainerKey):
workbook_id: str
@@ -596,7 +622,16 @@ class TableauSourceReport(StaleEntityRemovalSourceReport):
num_datasource_field_skipped_no_name: int = 0
num_csql_field_skipped_no_name: int = 0
num_table_field_skipped_no_name: int = 0
+ # lineage
+ num_tables_with_upstream_lineage: int = 0
+ num_upstream_table_lineage: int = 0
+ num_upstream_fine_grained_lineage: int = 0
num_upstream_table_skipped_no_name: int = 0
+ num_upstream_table_skipped_no_columns: int = 0
+ num_upstream_table_failed_generate_reference: int = 0
+ num_upstream_table_lineage_failed_parse_sql: int = 0
+ num_upstream_fine_grained_lineage_failed_parse_sql: int = 0
+ num_hidden_assets_skipped: int = 0
@platform_name("Tableau")
@@ -1043,6 +1078,11 @@ def get_data_platform_instance(self) -> DataPlatformInstanceClass:
),
)
+ def _is_hidden_view(self, dashboard_or_view: Dict) -> bool:
+ # LUID is blank if the view is hidden in the workbook.
+ # More info here: https://help.tableau.com/current/api/metadata_api/en-us/reference/view.doc.html
+ return not dashboard_or_view.get(c.LUID)
+
def get_connection_object_page(
self,
query: str,
@@ -1311,7 +1351,7 @@ def _create_upstream_table_lineage(
datasource: dict,
browse_path: Optional[str],
is_embedded_ds: bool = False,
- ) -> Tuple:
+ ) -> Tuple[List[Upstream], List[FineGrainedLineage]]:
upstream_tables: List[Upstream] = []
fine_grained_lineages: List[FineGrainedLineage] = []
table_id_to_urn = {}
@@ -1472,6 +1512,7 @@ def get_upstream_tables(
c.COLUMNS_CONNECTION
].get("totalCount")
if not is_custom_sql and not num_tbl_cols:
+ self.report.num_upstream_table_skipped_no_columns += 1
logger.warning(
f"Skipping upstream table with id {table[c.ID]}, no columns: {table}"
)
@@ -1488,6 +1529,7 @@ def get_upstream_tables(
table, default_schema_map=self.config.default_schema_map
)
except Exception as e:
+ self.report.num_upstream_table_failed_generate_reference += 1
self.report.warning(
title="Potentially Missing Lineage Issue",
message="Failed to generate upstream reference",
@@ -1659,15 +1701,7 @@ def get_upstream_fields_from_custom_sql(
func_overridden_info=None, # Here we don't want to override any information from configuration
)
- if parsed_result is None:
- logger.info(
- f"Failed to extract column level lineage from datasource {datasource_urn}"
- )
- return []
- if parsed_result.debug_info.error:
- logger.info(
- f"Failed to extract column level lineage from datasource {datasource_urn}: {parsed_result.debug_info.error}"
- )
+ if parsed_result is None or parsed_result.debug_info.error:
return []
cll: List[ColumnLineageInfo] = (
@@ -2031,6 +2065,8 @@ def _create_lineage_to_upstream_tables(
aspect_name=c.UPSTREAM_LINEAGE,
aspect=upstream_lineage,
)
+ self.report.num_tables_with_upstream_lineage += 1
+ self.report.num_upstream_table_lineage += len(upstream_tables)
@staticmethod
def _clean_tableau_query_parameters(query: str) -> str:
@@ -2130,7 +2166,7 @@ def parse_custom_sql(
f"Overridden info upstream_db={upstream_db}, platform_instance={platform_instance}, platform={platform}"
)
- return create_lineage_sql_parsed_result(
+ parsed_result = create_lineage_sql_parsed_result(
query=query,
default_db=upstream_db,
platform=platform,
@@ -2140,6 +2176,21 @@ def parse_custom_sql(
schema_aware=not self.config.sql_parsing_disable_schema_awareness,
)
+ assert parsed_result is not None
+
+ if parsed_result.debug_info.table_error:
+ logger.warning(
+ f"Failed to extract table lineage from datasource {datasource_urn}: {parsed_result.debug_info.table_error}"
+ )
+ self.report.num_upstream_table_lineage_failed_parse_sql += 1
+ elif parsed_result.debug_info.column_error:
+ logger.warning(
+ f"Failed to extract column level lineage from datasource {datasource_urn}: {parsed_result.debug_info.column_error}"
+ )
+ self.report.num_upstream_fine_grained_lineage_failed_parse_sql += 1
+
+ return parsed_result
+
def _enrich_database_tables_with_parsed_schemas(
self, parsing_result: SqlParsingResult
) -> None:
@@ -2174,9 +2225,6 @@ def _create_lineage_from_unsupported_csql(
)
if parsed_result is None:
- logger.info(
- f"Failed to extract table level lineage for datasource {csql_urn}"
- )
return
self._enrich_database_tables_with_parsed_schemas(parsed_result)
@@ -2196,12 +2244,14 @@ def _create_lineage_from_unsupported_csql(
upstreams=upstream_tables,
fineGrainedLineages=fine_grained_lineages,
)
-
yield self.get_metadata_change_proposal(
csql_urn,
aspect_name=c.UPSTREAM_LINEAGE,
aspect=upstream_lineage,
)
+ self.report.num_tables_with_upstream_lineage += 1
+ self.report.num_upstream_table_lineage += len(upstream_tables)
+ self.report.num_upstream_fine_grained_lineage += len(fine_grained_lineages)
def _get_schema_metadata_for_datasource(
self, datasource_fields: List[dict]
@@ -2278,12 +2328,11 @@ def emit_datasource(
)
# Tags
- if datasource_info:
+ if datasource_info and self.config.ingest_tags:
tags = self.get_tags(datasource_info)
- if tags:
- dataset_snapshot.aspects.append(
- builder.make_global_tag_aspect_with_tag_list(tags)
- )
+ dataset_snapshot.aspects.append(
+ builder.make_global_tag_aspect_with_tag_list(tags)
+ )
# Browse path
if browse_path and is_embedded_ds and workbook and workbook.get(c.NAME):
@@ -2352,6 +2401,11 @@ def emit_datasource(
aspect_name=c.UPSTREAM_LINEAGE,
aspect=upstream_lineage,
)
+ self.report.num_tables_with_upstream_lineage += 1
+ self.report.num_upstream_table_lineage += len(upstream_tables)
+ self.report.num_upstream_fine_grained_lineage += len(
+ fine_grained_lineages
+ )
# Datasource Fields
schema_metadata = self._get_schema_metadata_for_datasource(
@@ -2669,7 +2723,13 @@ def emit_sheets(self) -> Iterable[MetadataWorkUnit]:
c.SHEETS_CONNECTION,
sheets_filter,
):
- yield from self.emit_sheets_as_charts(sheet, sheet.get(c.WORKBOOK))
+ if self.config.ingest_hidden_assets or not self._is_hidden_view(sheet):
+ yield from self.emit_sheets_as_charts(sheet, sheet.get(c.WORKBOOK))
+ else:
+ self.report.num_hidden_assets_skipped += 1
+ logger.debug(
+ f"Skip view {sheet.get(c.ID)} because it's hidden (luid is blank)."
+ )
def emit_sheets_as_charts(
self, sheet: dict, workbook: Optional[Dict]
@@ -2760,11 +2820,17 @@ def emit_sheets_as_charts(
chart_snapshot.aspects.append(owner)
# Tags
- tags = self.get_tags(sheet)
- if tags:
+ if self.config.ingest_tags:
+ tags = self.get_tags(sheet)
+ if len(self.config.tags_for_hidden_assets) > 0 and self._is_hidden_view(
+ sheet
+ ):
+ tags.extend(self.config.tags_for_hidden_assets)
+
chart_snapshot.aspects.append(
builder.make_global_tag_aspect_with_tag_list(tags)
)
+
yield self.get_metadata_change_event(chart_snapshot)
if sheet_external_url is not None and self.config.ingest_embed_url is True:
yield self.new_work_unit(
@@ -2846,7 +2912,7 @@ def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUni
else None
)
- tags = self.get_tags(workbook)
+ tags = self.get_tags(workbook) if self.config.ingest_tags else None
parent_key = None
project_luid: Optional[str] = self._get_workbook_project_luid(workbook)
@@ -2977,17 +3043,23 @@ def emit_dashboards(self) -> Iterable[MetadataWorkUnit]:
c.DASHBOARDS_CONNECTION,
dashboards_filter,
):
- yield from self.emit_dashboard(dashboard, dashboard.get(c.WORKBOOK))
+ if self.config.ingest_hidden_assets or not self._is_hidden_view(dashboard):
+ yield from self.emit_dashboard(dashboard, dashboard.get(c.WORKBOOK))
+ else:
+ self.report.num_hidden_assets_skipped += 1
+ logger.debug(
+ f"Skip dashboard {dashboard.get(c.ID)} because it's hidden (luid is blank)."
+ )
- def get_tags(self, obj: dict) -> Optional[List[str]]:
+ def get_tags(self, obj: dict) -> List[str]:
tag_list = obj.get(c.TAGS, [])
- if tag_list and self.config.ingest_tags:
+ if tag_list:
tag_list_str = [
t[c.NAME] for t in tag_list if t is not None and t.get(c.NAME)
]
return tag_list_str
- return None
+ return []
def emit_dashboard(
self, dashboard: dict, workbook: Optional[Dict]
@@ -3038,8 +3110,13 @@ def emit_dashboard(
)
dashboard_snapshot.aspects.append(dashboard_info_class)
- tags = self.get_tags(dashboard)
- if tags:
+ if self.config.ingest_tags:
+ tags = self.get_tags(dashboard)
+ if len(self.config.tags_for_hidden_assets) > 0 and self._is_hidden_view(
+ dashboard
+ ):
+ tags.extend(self.config.tags_for_hidden_assets)
+
dashboard_snapshot.aspects.append(
builder.make_global_tag_aspect_with_tag_list(tags)
)
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json
index 855f8728380529..5901f18bd66433 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json
@@ -870,8 +870,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -939,6 +939,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1221,6 +1226,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1789,6 +1799,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2409,6 +2424,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2925,6 +2945,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3077,6 +3102,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3604,6 +3634,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4112,6 +4147,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4588,6 +4628,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5093,6 +5138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5485,6 +5535,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5851,6 +5906,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6246,6 +6306,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6693,6 +6758,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7111,6 +7181,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7451,6 +7526,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7817,6 +7897,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8079,6 +8164,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8526,6 +8616,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8869,6 +8964,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9238,6 +9338,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9630,6 +9735,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10077,6 +10187,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10227,8 +10342,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10277,6 +10392,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10384,6 +10504,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10489,6 +10614,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10608,6 +10738,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11038,6 +11173,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -12896,7 +13036,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
},
{
@@ -12904,7 +13044,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
}
],
@@ -12995,6 +13135,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13336,6 +13481,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14251,6 +14401,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15212,6 +15367,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22084,6 +22244,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26204,6 +26369,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31558,6 +31728,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31902,6 +32077,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32671,6 +32851,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json
index 3fd5ed1ac9dee6..f5914d5b2e2d1e 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json
@@ -1129,8 +1129,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -1198,6 +1198,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1480,6 +1485,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2048,6 +2058,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2668,6 +2683,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3184,6 +3204,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3336,6 +3361,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3863,6 +3893,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4371,6 +4406,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4847,6 +4887,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5352,6 +5397,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5744,6 +5794,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6110,6 +6165,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6505,6 +6565,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6952,6 +7017,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7370,6 +7440,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7710,6 +7785,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8076,6 +8156,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8338,6 +8423,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8785,6 +8875,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9128,6 +9223,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9497,6 +9597,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9889,6 +9994,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10336,6 +10446,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10486,8 +10601,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10536,6 +10651,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10643,6 +10763,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10748,6 +10873,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10867,6 +10997,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11297,6 +11432,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13155,7 +13295,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
},
{
@@ -13163,7 +13303,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
}
],
@@ -13254,6 +13394,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13595,6 +13740,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14510,6 +14660,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15471,6 +15626,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22343,6 +22503,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26463,6 +26628,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31817,6 +31987,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32161,6 +32336,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32930,6 +33110,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_hidden_asset_tags_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_hidden_asset_tags_mces_golden.json
new file mode 100644
index 00000000000000..78c72f9d2a8710
--- /dev/null
+++ b/metadata-ingestion/tests/integration/tableau/tableau_hidden_asset_tags_mces_golden.json
@@ -0,0 +1,44892 @@
+[
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "190a6a5c-63ed-4de1-8045-faeae5df5b01"
+ },
+ "name": "default"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "c30aafe5-44f4-4f28-80d3-d181010a263c"
+ },
+ "name": "Project 2"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "910733aa-2e95-4ac3-a2e8-71570751099d"
+ },
+ "name": "Samples"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "79d02655-88e5-45a6-9f9b-eeaf5fe54903"
+ },
+ "name": "DenyProject"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "1f15d897-7f0c-7c59-037a-afa6a9b7c9a9"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15995",
+ "name": "Email Performance by Campaign",
+ "description": "Description for Email Performance by Campaign"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "661fabd0-bed6-8610-e066-0694a81a6cea"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15619",
+ "name": "Dvdrental Workbook",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "globalTags",
+ "aspect": {
+ "json": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:TagSheet3"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15605",
+ "name": "Executive Dashboard",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/17904",
+ "name": "Workbook published ds",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "ee012e36-d916-4c21-94ab-f0d66736af4e"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/17904",
+ "name": "Deny Pattern WorkBook",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "urn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "chartUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 5
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {
+ "luid": "f0779f9d-6765-47a9-a8f6-c740cfd27783"
+ },
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Timeline%20-%20Sent",
+ "title": "Timeline - Sent",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign%20List",
+ "title": "Campaign List",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary",
+ "title": "Summary",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Measure Names)",
+ "schemaField": {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Measure Values)",
+ "schemaField": {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile%20-%20Sent%20by%20Campaign",
+ "title": "Mobile - Sent by Campaign",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1",
+ "title": "Sheet 1",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639772911000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Custom SQL Query)",
+ "schemaField": {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2",
+ "title": "Sheet 2",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639773415000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Custom SQL Query)",
+ "schemaField": {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),First Name)",
+ "schemaField": {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Last Name)",
+ "schemaField": {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),amount)",
+ "schemaField": {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),customer_id)",
+ "schemaField": {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),payment_date)",
+ "schemaField": {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),rental_id)",
+ "schemaField": {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3",
+ "title": "Sheet 3",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640375456000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:TagSheet3"
+ },
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Category)",
+ "schemaField": {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer Name)",
+ "schemaField": {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Segment)",
+ "schemaField": {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Requests",
+ "title": "Opened Requests",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total # Request)",
+ "schemaField": {
+ "fieldPath": "Total # Request",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total Active Requests)",
+ "schemaField": {
+ "fieldPath": "Total Active Requests",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top%2010%20Items%20by%20Requests%20and%20YoY%20Change",
+ "title": "Top 10 Items by Requests and YoY Change",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Problems",
+ "title": "Opened Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total # Problems)",
+ "schemaField": {
+ "fieldPath": "Total # Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total Active Problems)",
+ "schemaField": {
+ "fieldPath": "Total Active Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue",
+ "title": "Overdue",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High%20and%20Critical%20Priority%20Problems",
+ "title": "High and Critical Priority Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of critical and high priority)",
+ "schemaField": {
+ "fieldPath": "% of critical and high priority",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total%20Incidents%20by%20Category%20and%20YoY%20Change",
+ "title": "Total Incidents by Category and YoY Change",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known%20Errors",
+ "title": "Known Errors",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of known error)",
+ "schemaField": {
+ "fieldPath": "% of known error",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Known error)",
+ "schemaField": {
+ "fieldPath": "Known error",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Problems with Related Incidents)",
+ "schemaField": {
+ "fieldPath": "Problems with Related Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Related Incidents)",
+ "schemaField": {
+ "fieldPath": "Related Incidents",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue%20Requests",
+ "title": "Overdue Requests",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG%20Time%20to%20Solve%20an%20Incident",
+ "title": "AVG Time to Solve an Incident",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)",
+ "schemaField": {
+ "fieldPath": "Time to Close an Incident (seconds)",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident)",
+ "schemaField": {
+ "fieldPath": "Time to Close an Incident",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made%20SLA%3F",
+ "title": "Made SLA?",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% made SLA)",
+ "schemaField": {
+ "fieldPath": "% made SLA",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Made SLA)",
+ "schemaField": {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority",
+ "title": "Tooltip - Incident Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue%20Problems",
+ "title": "Overdue Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority",
+ "title": "Tooltip - Problem Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority",
+ "title": "Tooltip - Request Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age%20of%20Active%20Problems",
+ "title": "Age of Active Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)",
+ "schemaField": {
+ "fieldPath": "Age of Problems",
+ "nullable": false,
+ "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Time Span Breakdown)",
+ "schemaField": {
+ "fieldPath": "Time Span Breakdown",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Incidents",
+ "title": "Opened Incidents",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened Month Tooltip)",
+ "schemaField": {
+ "fieldPath": "Opened Month Tooltip",
+ "nullable": false,
+ "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Total Active Incidents)",
+ "schemaField": {
+ "fieldPath": "Total Active Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1",
+ "title": "published sheet ds",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1641951867000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642658093000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),amount)",
+ "schemaField": {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_first_name)",
+ "schemaField": {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_last_name)",
+ "schemaField": {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "dashboardUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 3
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {
+ "luid": "fc9ea488-f810-4fa8-ac19-aa96018b5d66"
+ },
+ "title": "Email Performance by Campaign",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)"
+ ],
+ "datasets": [],
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "dvd Rental Dashboard",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)"
+ ],
+ "datasets": [],
+ "lastModified": {
+ "created": {
+ "time": 1639773866000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "Story 1",
+ "description": "",
+ "charts": [],
+ "datasets": [],
+ "lastModified": {
+ "created": {
+ "time": 1639773866000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "Executive Dashboard",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)"
+ ],
+ "datasets": [],
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:hidden"
+ },
+ {
+ "tag": "urn:li:tag:private"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Activity_Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Bounceback)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Sent Email] - [Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_Run_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign Run ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Choice_Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Choice Number %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Click Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Clickthrough Emails]/[Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Email Delivered)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Email Delivered)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Delivered Email]/[Sent Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Has_Predictive)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Is Predictive)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Mailing_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Mailing ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Non Clickthrough Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Delivered Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Opened Email]/[Delivered Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Open Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Non Clicked Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Opened Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Platform)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Platform %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),updatedAt)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Updated At)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),User_Agent)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),User Agent %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),programName)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Workspace Name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "Marketo",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workspace Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Non Clicked Emails",
+ "nullable": false,
+ "description": "formula: [Opened Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Clickthrough Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Opened Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Opened Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Bounceback",
+ "nullable": false,
+ "description": "formula: [Sent Email] - [Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),First Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD),last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Last Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),rental_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),rental_id)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Customer Payment Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "actor+ (dvdrental)",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Address2",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "District",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "country, city",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Phone",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update (Address)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Actor Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),City)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Country/Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Discount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Discount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Location)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Manufacturer)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID %28Returns%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID %28Returns%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Orders)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Orders)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),People)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Postal Code)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Quantity)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Quantity)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region %28People%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region %28People%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Regional Manager)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Regional Manager)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returned)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returned)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returns)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returns)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Row ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Row ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sales)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Segment)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Mode)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Mode)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),State)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sub-Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Regional Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Made SLA)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% made SLA)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total # Request)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total Active Requests)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T19:35:39Z",
+ "extractLastUpdateTime": "2018-01-18T19:35:39Z"
+ },
+ "name": "Requests",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Closed by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% made SLA",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Meta",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Request",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered item link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible elsewhere",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Update name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Special instructions",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Execution Plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Bundles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No search",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "List Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Guide",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Package",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Estimated Delivery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fulfillment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Backordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ignore price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Replace on upgrade",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Context",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Protection policy",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Omit price in cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalogs",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Entitlement script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published version",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Preview link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Guides",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item) 1",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve Time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Icon",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Display name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No proceed checkout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Use cart layout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order now",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Application",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Template",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalog",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Image",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workflow",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created from item design",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Hide price (mobile listings)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Availability",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Requests",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of critical and high priority)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Known error)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of known error)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Related Incidents)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Problems with Related Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Time Span Breakdown)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total # Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total Active Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:21:33Z",
+ "extractLastUpdateTime": "2018-01-18T20:21:33Z"
+ },
+ "name": "Problems",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "SLA due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Default assignee",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workaround",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time Span Breakdown",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Exclude manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lucha",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problems with Related Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Related Incidents",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of known error",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Known error",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group email",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Age of Problems",
+ "nullable": false,
+ "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of critical and high priority",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Include members",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened Month Tooltip)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Total Active Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:13:08Z",
+ "extractLastUpdateTime": "2018-01-18T20:13:08Z"
+ },
+ "name": "Incidents",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Attributes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close code (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Notify (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requires verification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Maintenance schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Warranty expiration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "GL account",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First discovered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Skip sync",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "DNS Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caller (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Department",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Managed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "PO number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Child Incidents (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "IP Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset tag",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked out",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fully qualified domain name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Installed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Purchased",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lease contract",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent Incident (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost currency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Monitor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Serial number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident (seconds)",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Owned by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Invoice number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order received",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discovery source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Operational status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reopen count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Most recent discovery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fault count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caused by Change (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "MAC Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Supported by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Support group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Justification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change Request (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Incident state (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Month Tooltip",
+ "nullable": false,
+ "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Severity (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Can Print",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),Custom SQL Query)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),Custom SQL Query)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),amount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_id)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),payment_date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "New DataSource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:tag on published datasource"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "description": "description for test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "transformOperation": "GroupField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "BinField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "CalculatedFieldformula: SUM([Profit])/SUM([Sales])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "SetField",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "description": "Description for Superstore dataset",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:SETFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "formula: SUM([Profit])/SUM([Sales])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:BINFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:GROUPFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "urn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/Customer Payment Query"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tcustomer.customer_id,\n\tfirst_name,\n\tlast_name,\n\tamount,\n\tpayment_date,\n\trental_id\nFROM\n\tcustomer\nINNER JOIN payment \n ON payment.customer_id = customer.customer_id\nwhere customer.customer_id = <[Parameters].[Parameter 1]>\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tc.customer_id,\n\tc.first_name customer_first_name,\n\tc.last_name customer_last_name,\n\ts.first_name staff_first_name,\n\ts.last_name staff_last_name,\n\tamount,\n\tpayment_date\nFROM\n\tcustomer c\nINNER JOIN payment p \n ON p.customer_id = c.customer_id\nINNER JOIN staff s \n ON p.staff_id = s.staff_id\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "seller_city",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/SubProject1/AbcJoinWorkbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "select seller_city, price from demo-custom-323403.bigquery_demo.sellers sell LEFT JOIN (\nselect * from demo-custom-323403.bigquery_demo.order_items\n) items on items.seller_id=sell.seller_id",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "SubProject1"
+ },
+ {
+ "id": "AbcJoinWorkbook"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "programName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "programId",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "createdAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workspaceName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "updatedAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "postal_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "phone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "city_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I2",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "district",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems",
+ "/prod/tableau/default/Executive Dashboard/Requests",
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_for",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "special_instructions",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "configuration_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_catalog",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "estimated_delivery",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "context",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cat_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "backordered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sc_catalogs",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workflow",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_customer_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_standalone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_scope",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "template",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_proceed_checkout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "meta",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ordered_item_link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_version",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "image",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_policy",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "list_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order_now",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_item_staging",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "entitlement_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "icon",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ignore_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_closed",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_package",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_replace_on_upgrade",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_FLOAT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "use_sc_layout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "availability",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "custom_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_hide_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_time",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_search",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_bundle",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_update_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "preview",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "omit_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "u_u",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "exclude_manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lucha",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lu2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "default_assignee",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "email",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "include_members",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "related_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_around",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "known_error",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "severity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent_incident",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caller_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "child_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "incident_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "notify",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caused_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reopen_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "first_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "operational_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_cc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "attributes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "serial_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ip_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "support_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "supported_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "invoice_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "managed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fault_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "justification",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "lease_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "monitor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "can_print",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "discovery_source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fqdn",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "warranty_expiration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "owned_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset_tag",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manufacturer",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "purchase_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "department",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_out",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "unverified",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "skip_sync",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "po_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "gl_account",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "maintenance_schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "dns_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mac_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "change_control",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "test publish datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:ATTRIBUTE",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "ATTRIBUTE"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:BINFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "BINFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:CALCULATEDFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "CALCULATEDFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:COLUMNFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "COLUMNFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:COUNT",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "COUNT"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:DATASOURCEFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "DATASOURCEFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:DIMENSION",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "DIMENSION"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:GROUPFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "GROUPFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:HIERARCHYFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "HIERARCHYFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:MEASURE",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "MEASURE"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:SETFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "SETFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:SUM",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "SUM"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:TagSheet3",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "TagSheet3"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:YEAR",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "YEAR"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:hidden",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "hidden"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:private",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "private"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:tag on published datasource",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "tag on published datasource"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_hidden_asset_tags_ingest"
+ }
+}
+]
\ No newline at end of file
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_ingest_tags_disabled_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_ingest_tags_disabled_mces_golden.json
new file mode 100644
index 00000000000000..b0946fd053f756
--- /dev/null
+++ b/metadata-ingestion/tests/integration/tableau/tableau_ingest_tags_disabled_mces_golden.json
@@ -0,0 +1,32956 @@
+[
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "190a6a5c-63ed-4de1-8045-faeae5df5b01"
+ },
+ "name": "default"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "c30aafe5-44f4-4f28-80d3-d181010a263c"
+ },
+ "name": "Project 2"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "910733aa-2e95-4ac3-a2e8-71570751099d"
+ },
+ "name": "Samples"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "1f15d897-7f0c-7c59-037a-afa6a9b7c9a9"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15995",
+ "name": "Email Performance by Campaign",
+ "description": "Description for Email Performance by Campaign"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "661fabd0-bed6-8610-e066-0694a81a6cea"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15619",
+ "name": "Dvdrental Workbook",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15605",
+ "name": "Executive Dashboard",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/17904",
+ "name": "Workbook published ds",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "chartUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 5
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {
+ "luid": "f0779f9d-6765-47a9-a8f6-c740cfd27783"
+ },
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Timeline%20-%20Sent",
+ "title": "Timeline - Sent",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign%20List",
+ "title": "Campaign List",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary",
+ "title": "Summary",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Measure Names)",
+ "schemaField": {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Measure Values)",
+ "schemaField": {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile%20-%20Sent%20by%20Campaign",
+ "title": "Mobile - Sent by Campaign",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)",
+ "schemaField": {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "schemaField": {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "schemaField": {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)",
+ "schemaField": {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Click Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Email Delivered%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id %28Activity - Open Email%29)",
+ "schemaField": {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)",
+ "schemaField": {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "schemaField": {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "schemaField": {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1",
+ "title": "Sheet 1",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639772911000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Custom SQL Query)",
+ "schemaField": {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2",
+ "title": "Sheet 2",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639773415000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Custom SQL Query)",
+ "schemaField": {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),First Name)",
+ "schemaField": {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Last Name)",
+ "schemaField": {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),amount)",
+ "schemaField": {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),customer_id)",
+ "schemaField": {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),payment_date)",
+ "schemaField": {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),rental_id)",
+ "schemaField": {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3",
+ "title": "Sheet 3",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640375456000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Category)",
+ "schemaField": {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer Name)",
+ "schemaField": {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Segment)",
+ "schemaField": {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Requests",
+ "title": "Opened Requests",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total # Request)",
+ "schemaField": {
+ "fieldPath": "Total # Request",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total Active Requests)",
+ "schemaField": {
+ "fieldPath": "Total Active Requests",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top%2010%20Items%20by%20Requests%20and%20YoY%20Change",
+ "title": "Top 10 Items by Requests and YoY Change",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Problems",
+ "title": "Opened Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total # Problems)",
+ "schemaField": {
+ "fieldPath": "Total # Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total Active Problems)",
+ "schemaField": {
+ "fieldPath": "Total Active Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue",
+ "title": "Overdue",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High%20and%20Critical%20Priority%20Problems",
+ "title": "High and Critical Priority Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of critical and high priority)",
+ "schemaField": {
+ "fieldPath": "% of critical and high priority",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total%20Incidents%20by%20Category%20and%20YoY%20Change",
+ "title": "Total Incidents by Category and YoY Change",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known%20Errors",
+ "title": "Known Errors",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of known error)",
+ "schemaField": {
+ "fieldPath": "% of known error",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Known error)",
+ "schemaField": {
+ "fieldPath": "Known error",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Problems with Related Incidents)",
+ "schemaField": {
+ "fieldPath": "Problems with Related Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Related Incidents)",
+ "schemaField": {
+ "fieldPath": "Related Incidents",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue%20Requests",
+ "title": "Overdue Requests",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG%20Time%20to%20Solve%20an%20Incident",
+ "title": "AVG Time to Solve an Incident",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)",
+ "schemaField": {
+ "fieldPath": "Time to Close an Incident (seconds)",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident)",
+ "schemaField": {
+ "fieldPath": "Time to Close an Incident",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made%20SLA%3F",
+ "title": "Made SLA?",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% made SLA)",
+ "schemaField": {
+ "fieldPath": "% made SLA",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Made SLA)",
+ "schemaField": {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority",
+ "title": "Tooltip - Incident Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue%20Problems",
+ "title": "Overdue Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of Overdue)",
+ "schemaField": {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority",
+ "title": "Tooltip - Problem Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority",
+ "title": "Tooltip - Request Breakdown by Priority",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age%20of%20Active%20Problems",
+ "title": "Age of Active Problems",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)"
+ },
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)",
+ "schemaField": {
+ "fieldPath": "Age of Problems",
+ "nullable": false,
+ "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Time Span Breakdown)",
+ "schemaField": {
+ "fieldPath": "Time Span Breakdown",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened%20Incidents",
+ "title": "Opened Incidents",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Category %28Incident%29)",
+ "schemaField": {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "schemaField": {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)",
+ "schemaField": {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)",
+ "schemaField": {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "schemaField": {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "schemaField": {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened Month Tooltip)",
+ "schemaField": {
+ "fieldPath": "Opened Month Tooltip",
+ "nullable": false,
+ "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "schemaField": {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "schemaField": {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Priority)",
+ "schemaField": {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Total Active Incidents)",
+ "schemaField": {
+ "fieldPath": "Total Active Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {},
+ "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1",
+ "title": "published sheet ds",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1641951867000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642658093000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),amount)",
+ "schemaField": {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_first_name)",
+ "schemaField": {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_last_name)",
+ "schemaField": {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "dashboardUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 3
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {
+ "luid": "fc9ea488-f810-4fa8-ac19-aa96018b5d66"
+ },
+ "title": "Email Performance by Campaign",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)"
+ ],
+ "datasets": [],
+ "dashboards": [],
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "dvd Rental Dashboard",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)"
+ ],
+ "datasets": [],
+ "dashboards": [],
+ "lastModified": {
+ "created": {
+ "time": 1639773866000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "Story 1",
+ "description": "",
+ "charts": [],
+ "datasets": [],
+ "dashboards": [],
+ "lastModified": {
+ "created": {
+ "time": 1639773866000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1642199995000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {},
+ "title": "Executive Dashboard",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)"
+ ],
+ "datasets": [],
+ "dashboards": [],
+ "lastModified": {
+ "created": {
+ "time": 1639768450000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1639768502000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Activity_Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Bounceback)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Sent Email] - [Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_Run_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign Run ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Choice_Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Choice Number %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Click Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Clickthrough Emails]/[Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Email Delivered)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Email Delivered)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Delivered Email]/[Sent Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Has_Predictive)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Is Predictive)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Mailing_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Mailing ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Non Clickthrough Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Delivered Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Opened Email]/[Delivered Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Open Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Non Clicked Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Opened Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Platform)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Platform %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),updatedAt)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Updated At)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),User_Agent)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),User Agent %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),programName)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Workspace Name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "Marketo",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workspace Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Non Clicked Emails",
+ "nullable": false,
+ "description": "formula: [Opened Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Clickthrough Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Opened Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Opened Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Bounceback",
+ "nullable": false,
+ "description": "formula: [Sent Email] - [Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),First Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD),last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Last Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),rental_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),rental_id)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Customer Payment Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "actor+ (dvdrental)",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Address2",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "District",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "country, city",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Phone",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update (Address)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Actor Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),City)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Country/Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Discount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Discount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Location)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Manufacturer)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID %28Returns%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID %28Returns%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Orders)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Orders)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),People)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Postal Code)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Quantity)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Quantity)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region %28People%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region %28People%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Regional Manager)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Regional Manager)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returned)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returned)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returns)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returns)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Row ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Row ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sales)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Segment)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Mode)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Mode)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),State)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sub-Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Regional Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Made SLA)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% made SLA)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total # Request)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total Active Requests)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T19:35:39Z",
+ "extractLastUpdateTime": "2018-01-18T19:35:39Z"
+ },
+ "name": "Requests",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Closed by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% made SLA",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Meta",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Request",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered item link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible elsewhere",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Update name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Special instructions",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Execution Plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Bundles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No search",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "List Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Guide",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Package",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Estimated Delivery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fulfillment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Backordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ignore price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Replace on upgrade",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Context",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Protection policy",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Omit price in cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalogs",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Entitlement script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published version",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Preview link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Guides",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item) 1",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve Time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Icon",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Display name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No proceed checkout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Use cart layout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order now",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Application",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Template",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalog",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Image",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workflow",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created from item design",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Hide price (mobile listings)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Availability",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Requests",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of critical and high priority)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Known error)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of known error)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Related Incidents)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Problems with Related Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Time Span Breakdown)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total # Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total Active Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:21:33Z",
+ "extractLastUpdateTime": "2018-01-18T20:21:33Z"
+ },
+ "name": "Problems",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "SLA due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Default assignee",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workaround",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time Span Breakdown",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Exclude manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lucha",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problems with Related Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Related Incidents",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of known error",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Known error",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group email",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Age of Problems",
+ "nullable": false,
+ "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of critical and high priority",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Include members",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened Month Tooltip)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Total Active Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:13:08Z",
+ "extractLastUpdateTime": "2018-01-18T20:13:08Z"
+ },
+ "name": "Incidents",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Attributes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close code (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Notify (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requires verification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Maintenance schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Warranty expiration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "GL account",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First discovered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Skip sync",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "DNS Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caller (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Department",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Managed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "PO number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Child Incidents (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "IP Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset tag",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked out",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fully qualified domain name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Installed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Purchased",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lease contract",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent Incident (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost currency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Monitor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Serial number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident (seconds)",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Owned by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Invoice number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order received",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discovery source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Operational status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reopen count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Most recent discovery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fault count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caused by Change (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "MAC Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Supported by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Support group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Justification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change Request (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Incident state (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Month Tooltip",
+ "nullable": false,
+ "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Severity (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Can Print",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),Custom SQL Query)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),Custom SQL Query)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),amount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_id)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),payment_date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "New DataSource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "description": "description for test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "transformOperation": "GroupField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "BinField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "CalculatedFieldformula: SUM([Profit])/SUM([Sales])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "SetField",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "description": "Description for Superstore dataset",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "formula: SUM([Profit])/SUM([Sales])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "urn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/Customer Payment Query"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tcustomer.customer_id,\n\tfirst_name,\n\tlast_name,\n\tamount,\n\tpayment_date,\n\trental_id\nFROM\n\tcustomer\nINNER JOIN payment \n ON payment.customer_id = customer.customer_id\nwhere customer.customer_id = <[Parameters].[Parameter 1]>\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tc.customer_id,\n\tc.first_name customer_first_name,\n\tc.last_name customer_last_name,\n\ts.first_name staff_first_name,\n\ts.last_name staff_last_name,\n\tamount,\n\tpayment_date\nFROM\n\tcustomer c\nINNER JOIN payment p \n ON p.customer_id = c.customer_id\nINNER JOIN staff s \n ON p.staff_id = s.staff_id\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "seller_city",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/SubProject1/AbcJoinWorkbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "select seller_city, price from demo-custom-323403.bigquery_demo.sellers sell LEFT JOIN (\nselect * from demo-custom-323403.bigquery_demo.order_items\n) items on items.seller_id=sell.seller_id",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "SubProject1"
+ },
+ {
+ "id": "AbcJoinWorkbook"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "programName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "programId",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "createdAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workspaceName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "updatedAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "postal_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "phone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "city_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I2",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "district",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems",
+ "/prod/tableau/default/Executive Dashboard/Requests",
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_for",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "special_instructions",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "configuration_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_catalog",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "estimated_delivery",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "context",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cat_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "backordered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sc_catalogs",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workflow",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_customer_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_standalone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_scope",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "template",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_proceed_checkout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "meta",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ordered_item_link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_version",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "image",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_policy",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "list_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order_now",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_item_staging",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "entitlement_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "icon",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ignore_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_closed",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_package",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_replace_on_upgrade",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_FLOAT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "use_sc_layout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "availability",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "custom_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_hide_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_time",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_search",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_bundle",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_update_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "preview",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "omit_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "u_u",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "exclude_manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lucha",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lu2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "default_assignee",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "email",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "include_members",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "related_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_around",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "known_error",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "severity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent_incident",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caller_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "child_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "incident_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "notify",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caused_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reopen_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "first_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "operational_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_cc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "attributes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "serial_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ip_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "support_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "supported_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "invoice_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "managed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fault_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "justification",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "lease_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "monitor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "can_print",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "discovery_source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fqdn",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "warranty_expiration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "owned_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset_tag",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manufacturer",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "purchase_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "department",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_out",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "unverified",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "skip_sync",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "po_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "gl_account",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "maintenance_schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "dns_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mac_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "change_control",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "test publish datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_ingest_tags_disabled"
+ }
+}
+]
\ No newline at end of file
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json
index 29e1b77869aa51..8610f809ac52b0 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json
@@ -870,8 +870,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -939,6 +939,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1221,6 +1226,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1789,6 +1799,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2409,6 +2424,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2925,6 +2945,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3077,6 +3102,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3604,6 +3634,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4112,6 +4147,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4588,6 +4628,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5093,6 +5138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5485,6 +5535,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5851,6 +5906,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6246,6 +6306,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6693,6 +6758,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7111,6 +7181,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7451,6 +7526,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7817,6 +7897,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8079,6 +8164,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8526,6 +8616,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8869,6 +8964,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9238,6 +9338,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9630,6 +9735,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10077,6 +10187,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10227,8 +10342,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10277,6 +10392,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10384,6 +10504,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10489,6 +10614,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10608,6 +10738,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11038,6 +11173,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -12896,7 +13036,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
},
{
@@ -12904,7 +13044,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
}
],
@@ -12995,6 +13135,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13336,6 +13481,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14251,6 +14401,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15212,6 +15367,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22084,6 +22244,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26204,6 +26369,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31558,6 +31728,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31902,6 +32077,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32671,6 +32851,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_multiple_sites_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_multiple_sites_mces_golden.json
index 12c665235e6ac7..05ec0e76f92d6d 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_multiple_sites_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_multiple_sites_mces_golden.json
@@ -1043,8 +1043,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -1112,6 +1112,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1398,6 +1403,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1970,6 +1980,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2594,6 +2609,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3114,6 +3134,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3270,6 +3295,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3805,6 +3835,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4317,6 +4352,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4797,6 +4837,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5306,6 +5351,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5702,6 +5752,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6072,6 +6127,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6471,6 +6531,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6922,6 +6987,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7344,6 +7414,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7688,6 +7763,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8058,6 +8138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8324,6 +8409,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8775,6 +8865,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9122,6 +9217,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9495,6 +9595,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9891,6 +9996,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10342,6 +10452,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10496,8 +10611,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10546,6 +10661,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10657,6 +10777,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10766,6 +10891,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10889,6 +11019,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11323,6 +11458,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13284,6 +13424,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13629,6 +13774,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14548,6 +14698,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15513,6 +15668,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22389,6 +22549,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26513,6 +26678,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31871,6 +32041,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32219,6 +32394,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32996,6 +33176,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -44181,8 +44366,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -44250,6 +44435,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -44506,6 +44696,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -45048,6 +45243,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -45642,6 +45842,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -46132,6 +46337,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -46258,6 +46468,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -46733,6 +46948,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -47215,6 +47435,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -47665,6 +47890,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -48144,6 +48374,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -48510,6 +48745,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -48850,6 +49090,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -49219,6 +49464,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -49640,6 +49890,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -50032,6 +50287,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -50346,6 +50606,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -50686,6 +50951,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -50922,6 +51192,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -51343,6 +51618,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -51660,6 +51940,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -52003,6 +52288,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -52369,6 +52659,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -52790,6 +53085,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -52914,8 +53214,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -52964,6 +53264,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -53045,6 +53350,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -53124,6 +53434,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -53217,6 +53532,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -53621,6 +53941,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -55552,6 +55877,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -55867,6 +56197,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -56756,6 +57091,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -57691,6 +58031,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -64537,6 +64882,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -68631,6 +68981,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -73959,6 +74314,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -74277,6 +74637,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -74998,6 +75363,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json
index 2aee4abc4d049f..dd852671d760c2 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json
@@ -1129,8 +1129,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -1198,6 +1198,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1480,6 +1485,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2048,6 +2058,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2668,6 +2683,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3184,6 +3204,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3336,6 +3361,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3863,6 +3893,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4371,6 +4406,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4847,6 +4887,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5352,6 +5397,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5744,6 +5794,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6110,6 +6165,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6505,6 +6565,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6952,6 +7017,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7370,6 +7440,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7710,6 +7785,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8076,6 +8156,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8338,6 +8423,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8785,6 +8875,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9128,6 +9223,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9497,6 +9597,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9889,6 +9994,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10336,6 +10446,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10486,8 +10601,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10536,6 +10651,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10643,6 +10763,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10748,6 +10873,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10867,6 +10997,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11297,6 +11432,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13155,7 +13295,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
},
{
@@ -13163,7 +13303,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
}
],
@@ -13254,6 +13394,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13595,6 +13740,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14510,6 +14660,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15471,6 +15626,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22343,6 +22503,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26463,6 +26628,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31817,6 +31987,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32161,6 +32336,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32930,6 +33110,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_no_hidden_assets_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_no_hidden_assets_mces_golden.json
new file mode 100644
index 00000000000000..db1d7b4ba25d5f
--- /dev/null
+++ b/metadata-ingestion/tests/integration/tableau/tableau_no_hidden_assets_mces_golden.json
@@ -0,0 +1,34728 @@
+[
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "190a6a5c-63ed-4de1-8045-faeae5df5b01"
+ },
+ "name": "default"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "c30aafe5-44f4-4f28-80d3-d181010a263c"
+ },
+ "name": "Project 2"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:252a054d4dd93cd657735aa46dd71370",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "910733aa-2e95-4ac3-a2e8-71570751099d"
+ },
+ "name": "Samples"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": []
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "project_id": "79d02655-88e5-45a6-9f9b-eeaf5fe54903"
+ },
+ "name": "DenyProject"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Project"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "1f15d897-7f0c-7c59-037a-afa6a9b7c9a9"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15995",
+ "name": "Email Performance by Campaign",
+ "description": "Description for Email Performance by Campaign"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "661fabd0-bed6-8610-e066-0694a81a6cea"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15619",
+ "name": "Dvdrental Workbook",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "globalTags",
+ "aspect": {
+ "json": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:TagSheet3"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/15605",
+ "name": "Executive Dashboard",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/17904",
+ "name": "Workbook published ds",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "containerProperties",
+ "aspect": {
+ "json": {
+ "customProperties": {
+ "platform": "tableau",
+ "workbook_id": "ee012e36-d916-4c21-94ab-f0d66736af4e"
+ },
+ "externalUrl": "https://do-not-connect/#/site/acryl/workbooks/17904",
+ "name": "Deny Pattern WorkBook",
+ "description": ""
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "dataPlatformInstance",
+ "aspect": {
+ "json": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Workbook"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "ownership",
+ "aspect": {
+ "json": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "container",
+ "entityUrn": "urn:li:container:595877512935338b94eac9e06cf20607",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce",
+ "urn": "urn:li:container:beaddce9d1e89ab503ae6408fb77d4ce"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "chartUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 5
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": {
+ "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.chart.ChartInfo": {
+ "customProperties": {
+ "luid": "f0779f9d-6765-47a9-a8f6-c740cfd27783"
+ },
+ "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Timeline%20-%20Sent",
+ "title": "Timeline - Sent",
+ "description": "",
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "inputs": [
+ {
+ "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "inputFields",
+ "aspect": {
+ "json": {
+ "fields": [
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Active)",
+ "schemaField": {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date)",
+ "schemaField": {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),ID)",
+ "schemaField": {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)",
+ "schemaField": {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Name)",
+ "schemaField": {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ },
+ {
+ "schemaFieldUrn": "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program Name)",
+ "schemaField": {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "dashboardUsageStatistics",
+ "aspect": {
+ "json": {
+ "timestampMillis": 1638860400000,
+ "partitionSpec": {
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
+ },
+ "viewsCount": 3
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": {
+ "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dashboard.DashboardInfo": {
+ "customProperties": {
+ "luid": "fc9ea488-f810-4fa8-ac19-aa96018b5d66"
+ },
+ "title": "Email Performance by Campaign",
+ "description": "",
+ "charts": [
+ "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)",
+ "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)",
+ "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)"
+ ],
+ "datasets": [],
+ "lastModified": {
+ "created": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ },
+ "lastModified": {
+ "time": 1640200234000,
+ "actor": "urn:li:corpuser:jawadqu@gmail.com"
+ }
+ },
+ "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Activity_Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity Date %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Bounceback)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Sent Email] - [Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Campaign_Run_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Campaign Run ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Choice_Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Choice Number %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click-to-Open)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Click Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Click Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Clickthrough Emails]/[Delivered Email]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Email Delivered)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Email Delivered)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivery Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Delivered Email]/[Sent Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Has_Predictive)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Is Predictive)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD),Mailing_ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Mailing ID %28Activity - Email Delivered%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Non Clickthrough Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Delivered Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Delivered Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Rate)"
+ ],
+ "transformOperation": "CalculatedFieldformula: ZN([Opened Email]/[Delivered Email])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Activity)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Open Email)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id (Activity - Open Email)])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Email)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Clickthrough Emails)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Opened Non Clicked Emails)"
+ ],
+ "transformOperation": "CalculatedFieldformula: [Opened Email]-[Clickthrough Emails]",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),Platform)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Platform %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Sent Email)"
+ ],
+ "transformOperation": "CalculatedFieldformula: COUNTD([Id])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),updatedAt)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Updated At)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD),User_Agent)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),User Agent %28Activity - Click Email%29)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD),programName)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD),Workspace Name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "Marketo",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Delivery Rate",
+ "nullable": false,
+ "description": "formula: ZN([Delivered Email]/[Sent Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workspace Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Rate",
+ "nullable": false,
+ "description": "formula: [Clickthrough Emails]/[Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Open Rate",
+ "nullable": false,
+ "description": "formula: ZN([Opened Email]/[Delivered Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sent Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivered Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Email Delivered)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created At",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Clickthrough Emails",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Click Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is Mobile Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing ID (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Click-to-Open",
+ "nullable": false,
+ "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Email",
+ "nullable": false,
+ "description": "formula: COUNTD([Id (Activity - Open Email)])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign Run ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Non Clicked Emails",
+ "nullable": false,
+ "description": "formula: [Opened Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Clickthrough Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Clickthrough Emails]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead ID (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Program Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign ID (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity Date (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test Variant (Activity - Click Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Non Opened Email",
+ "nullable": false,
+ "description": "formula: [Delivered Email]-[Opened Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has Predictive (Activity - Email Delivered)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User Agent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Bounceback",
+ "nullable": false,
+ "description": "formula: [Sent Email] - [Delivered Email]",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice Number (Activity - Open Email)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a",
+ "urn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),First Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD),last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),Last Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD),rental_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD),rental_id)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Customer Payment Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "actor+ (dvdrental)",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Address2",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "District",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "country, city",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Phone",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Update (Address)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Address Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Actor Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Last Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City Id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),City)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Country/Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Customer Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Discount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Discount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Location)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Manufacturer)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID %28Returns%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID %28Returns%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Order ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Order ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Orders)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Orders)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Customer ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),People)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Postal Code)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product Name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Product)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Quantity)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Quantity)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region %28People%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region %28People%29)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Region)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Regional Manager)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Regional Manager)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returned)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returned)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Returns)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Returns)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Row ID)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Row ID)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sales)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Segment)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Ship Mode)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Ship Mode)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),State)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Sub-Category)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Regional Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Made SLA)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% made SLA)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total # Request)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD),Total Active Requests)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T19:35:39Z",
+ "extractLastUpdateTime": "2018-01-18T19:35:39Z"
+ },
+ "name": "Requests",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Closed by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% made SLA",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Meta",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Request",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered item link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible elsewhere",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Update name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Special instructions",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Execution Plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Bundles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No search",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "List Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer update",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Guide",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Package",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Estimated Delivery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price Frequency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Recurring Price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fulfillment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Backordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ignore price",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Replace on upgrade",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Context",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requested for",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Billable (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mobile Picture Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Protection policy",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Omit price in cart",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalogs",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Entitlement script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published version",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Preview link",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Price (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Visible on Guides",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Requested Item) 1",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Stage",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve Time",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Icon",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Display name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No proceed checkout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Use cart layout",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "No order now",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Application",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Template",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Catalog",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Image",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workflow",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created from item design",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Hide price (mobile listings)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Availability",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Picture",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan script",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Requested Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Requests",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Request state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Request)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Catalog Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Priority)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of critical and high priority)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Known error)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),% of known error)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Related Incidents)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Problems with Related Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Age of Problems)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Time Span Breakdown)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total # Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Active)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD),Total Active Problems)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:21:33Z",
+ "extractLastUpdateTime": "2018-01-18T20:21:33Z"
+ },
+ "name": "Problems",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "SLA due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Default assignee",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Workaround",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time Span Breakdown",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change request",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Roles",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total # Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Exclude manager",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lucha",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problems with Related Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Related Incidents",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of known error",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem state",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Known error",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group email",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Age of Problems",
+ "nullable": false,
+ "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of critical and high priority",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Include members",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Problem)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Problems",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Group)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),% of Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Current Year Total Cases)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened Month Tooltip)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Due date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Closed)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident %28seconds%29)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Time to Close an Incident)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Opened)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Overdue)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Active)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Max Year?)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Number)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD),Total Active Incidents)"
+ ],
+ "transformOperation": "CalculatedFieldformula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-01-18T20:13:08Z",
+ "extractLastUpdateTime": "2018-01-18T20:13:08Z"
+ },
+ "name": "Incidents",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Assignment group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Attributes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User input (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close code (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Migrated Data",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Notify (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Requires verification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Maintenance schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Escalation",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Warranty expiration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "GL account",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional assignee list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "First discovered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "% of Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Skip sync",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "DNS Domain",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caller (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Department",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Current Year Total Cases",
+ "nullable": false,
+ "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Close notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Managed by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Names",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "PO number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Short description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Child Incidents (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "IP Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Asset tag",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked out",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fully qualified domain name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Installed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Purchased",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lease contract",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Vendor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Overdue",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval history",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent Incident (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost currency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "SLA due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Impact (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Monitor",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Serial number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Model ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Parent (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident (seconds)",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Owned by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity due",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Invoice number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval set (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Duration",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Start date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ordered",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business duration (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order received",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discovery source",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Total Active Incidents",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ },
+ {
+ "tag": "urn:li:tag:ATTRIBUTE"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Class",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Operational status",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Expected start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work notes list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolve time (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reopen count (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created by (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned to (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Most recent discovery",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon reject (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Knowledge (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Max Year?",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Watch list (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery task",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Fault count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Caused by Change (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updated (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "MAC Address",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Approval",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Priority (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Urgency",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Company (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Additional comments (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Business service (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Schedule",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Supported by",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Configuration item (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Support group",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation display (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Justification",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Change Request (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Updates",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Incident state (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Made SLA (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Opened Month Tooltip",
+ "nullable": false,
+ "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Problem (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Measure Values",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Group list",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Checked in",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Severity (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number of Records",
+ "nullable": false,
+ "description": "formula: 1",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time worked (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Cost center",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work end (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Due date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Created (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Delivery plan",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Subcategory (Configuration Item)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sys ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments and Work notes (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Can Print",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Active",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "BOOLEAN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Number (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Follow up (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Task type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Domain Path (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Closed",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Description (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Reassignment count",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Contact type (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assignment group (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Comments",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Work start (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Correlation ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Resolved (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Assigned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Time to Close an Incident",
+ "nullable": false,
+ "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Upon approval (Incident)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d",
+ "urn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),Custom SQL Query)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),Custom SQL Query)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),amount)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_id)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),customer_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),payment_date)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_first_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD),staff_last_name)"
+ ],
+ "transformOperation": "IDENTITY",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Custom SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DATASOURCEFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,c7dd65fb-6e7e-4091-bbde-8c78b34a40f8,PROD),id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD),Program ID)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Workbook published ds"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {
+ "hasExtracts": "True",
+ "extractLastRefreshTime": "2018-02-09T00:05:25Z",
+ "extractLastUpdateTime": "2018-02-09T00:05:25Z"
+ },
+ "name": "New DataSource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Program ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Embedded Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9",
+ "urn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),amount)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),amount)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_id)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_id)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),customer_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),customer_last_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),payment_date)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),payment_date)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_first_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_first_name)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD),staff_last_name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD),staff_last_name)"
+ ],
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:tag on published datasource"
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "test publish datasource",
+ "description": "description for test publish datasource",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DATETIME",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Published SQL Query",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ],
+ "fineGrainedLineages": [
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),City)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Postal Code)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Country/Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Region)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),State)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Location)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)"
+ ],
+ "transformOperation": "GroupField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sub-Category)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Manufacturer)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product Name)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Product)"
+ ],
+ "transformOperation": "HierarchyField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit %28bin%29)"
+ ],
+ "transformOperation": "BinField",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)",
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Sales)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit Ratio)"
+ ],
+ "transformOperation": "CalculatedFieldformula: SUM([Profit])/SUM([Sales])",
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD),Segment)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Segment)"
+ ],
+ "confidenceScore": 1.0
+ },
+ {
+ "upstreamType": "FIELD_SET",
+ "upstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Profit)"
+ ],
+ "downstreamType": "FIELD",
+ "downstreams": [
+ "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD),Top Customers by Profit)"
+ ],
+ "transformOperation": "SetField",
+ "confidenceScore": 1.0
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.Ownership": {
+ "owners": [
+ {
+ "owner": "urn:li:corpuser:jawadqu@gmail.com",
+ "type": "DATAOWNER"
+ }
+ ],
+ "ownerTypes": {},
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ }
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Superstore Datasource",
+ "description": "Description for Superstore dataset",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Top Customers by Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:SETFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returns",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit Ratio",
+ "nullable": false,
+ "description": "formula: SUM([Profit])/SUM([Sales])",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:CALCULATEDFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Orders",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit (bin)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:BINFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID (Returns)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Location",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NullType": {}
+ }
+ },
+ "nativeDataType": "UNKNOWN",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:HIERARCHYFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "People",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.ArrayType": {}
+ }
+ },
+ "nativeDataType": "TABLE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:COUNT"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "INTEGER",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Manufacturer",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:GROUPFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region (People)",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "REAL",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:MEASURE"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:SUM"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ },
+ {
+ "tag": "urn:li:tag:YEAR"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "description": "",
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STRING",
+ "recursive": false,
+ "globalTags": {
+ "tags": [
+ {
+ "tag": "urn:li:tag:DIMENSION"
+ },
+ {
+ "tag": "urn:li:tag:COLUMNFIELD"
+ }
+ ]
+ },
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "Published Data Source"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873",
+ "urn": "urn:li:container:d2dcd6bd1bb954d62f1cfc68332ee873"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rental_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/Customer Payment Query"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tcustomer.customer_id,\n\tfirst_name,\n\tlast_name,\n\tamount,\n\tpayment_date,\n\trental_id\nFROM\n\tcustomer\nINNER JOIN payment \n ON payment.customer_id = customer.customer_id\nwhere customer.customer_id = <[Parameters].[Parameter 1]>\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ },
+ {
+ "id": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1",
+ "urn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "container",
+ "aspect": {
+ "json": {
+ "container": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "upstreamLineage",
+ "aspect": {
+ "json": {
+ "upstreams": [
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "type": "TRANSFORMED"
+ },
+ {
+ "auditStamp": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "type": "TRANSFORMED"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "customer_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "amount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "NUMERIC",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "payment_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "staff_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "customer_last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "SELECT\n\tc.customer_id,\n\tc.first_name customer_first_name,\n\tc.last_name customer_last_name,\n\ts.first_name staff_first_name,\n\ts.last_name staff_last_name,\n\tamount,\n\tpayment_date\nFROM\n\tcustomer c\nINNER JOIN payment p \n ON p.customer_id = c.customer_id\nINNER JOIN staff s \n ON p.staff_id = s.staff_id\nORDER BY payment_date",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b",
+ "urn": "urn:li:container:5ec314b9630974ec084f5dfd3849f87b"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.DataPlatformInstance": {
+ "platform": "urn:li:dataPlatform:tableau"
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "seller_city",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/SubProject1/AbcJoinWorkbook"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.DatasetProperties": {
+ "customProperties": {},
+ "name": "Custom SQL Query",
+ "tags": []
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.dataset.ViewProperties": {
+ "materialized": false,
+ "viewLogic": "select seller_city, price from demo-custom-323403.bigquery_demo.sellers sell LEFT JOIN (\nselect * from demo-custom-323403.bigquery_demo.order_items\n) items on items.seller_id=sell.seller_id",
+ "viewLanguage": "SQL"
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "subTypes",
+ "aspect": {
+ "json": {
+ "typeNames": [
+ "View",
+ "Custom SQL"
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "SubProject1"
+ },
+ {
+ "id": "AbcJoinWorkbook"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Link_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Platform",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Is_Mobile_Device",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "User_Agent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Test_Variant",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_Run_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Activity_Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Mailing_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Has_Predictive",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Campaign_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Step_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Lead_ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Choice_Number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Email Performance by Campaign/Marketo"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "programName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "programId",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "createdAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workspaceName",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "updatedAt",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Email Performance by Campaign"
+ },
+ {
+ "id": "Marketo"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "postal_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "phone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "city_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I2",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "district",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "address_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Dvdrental Workbook/actor+ (dvdrental)"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "last_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "DBTIMESTAMP",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "first_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "STR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "actor_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I4",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Dvdrental Workbook"
+ },
+ {
+ "id": "actor+ (dvdrental)"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Person",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Returned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/Samples/Superstore Datasource"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "Product ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Postal Code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "City",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "State",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Country/Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sales",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Segment",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Sub-Category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Profit",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Product Name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Customer ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Order ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Row ID",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "I8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Discount",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "R8",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Ship Mode",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "Region",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WSTR",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "Samples"
+ },
+ {
+ "id": "Superstore Datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems",
+ "/prod/tableau/default/Executive Dashboard/Requests",
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_for",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "requested_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "special_instructions",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "configuration_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_catalog",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "stage",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "estimated_delivery",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "context",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cat_item",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "backordered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "request",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Requests"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sc_catalogs",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "workflow",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_customer_update",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_standalone",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_quantity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_scope",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "template",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_proceed_checkout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "billable",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "meta",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ordered_item_link",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_version",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "image",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_policy",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "list_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order_now",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sc_ic_item_staging",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "entitlement_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "icon",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ignore_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_closed",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_package",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_replace_on_upgrade",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_FLOAT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "use_sc_layout",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "availability",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "custom_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_picture",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_cart",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mobile_hide_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_time",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "no_search",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_frequency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "recurring_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan_script",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_bundle",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_update_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "visible_guide",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "preview",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "omit_price",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Requests"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "u_u",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "exclude_manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lucha",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "u_lu2",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "roles",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "default_assignee",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "email",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manager",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "include_members",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Problems"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "related_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_around",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "known_error",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Problems"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "urgency",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "severity",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_service",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_set",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent_incident",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caller_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "group_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_display",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "resolved_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "parent",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "user_input",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "escalation",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval_history",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "impact",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "expected_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "additional_assignee_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "child_incidents",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cmdb_ci",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "incident_state",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "notify",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reassignment_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "contact_type",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "problem_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "opened_at",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_notes_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "priority",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "time_worked",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "caused_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_reject",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_task",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "knowledge",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "closed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_end",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "reopen_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "work_start",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "made_sla",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "calendar_stc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "rfc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_plan",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_code",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "close_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "activity_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "active",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "business_duration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "follow_up",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments_and_work_notes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "upon_approval",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "watch_list",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sla_due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Executive Dashboard/Incidents"
+ ]
+ }
+ },
+ {
+ "com.linkedin.pegasus2avro.schema.SchemaMetadata": {
+ "schemaName": "test",
+ "platform": "urn:li:dataPlatform:tableau",
+ "version": 0,
+ "created": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "lastModified": {
+ "time": 0,
+ "actor": "urn:li:corpuser:unknown"
+ },
+ "hash": "",
+ "platformSchema": {
+ "com.linkedin.pegasus2avro.schema.OtherSchema": {
+ "rawSchema": ""
+ }
+ },
+ "fields": [
+ {
+ "fieldPath": "first_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "operational_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "last_discovered",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_cc",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "attributes",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "serial_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "vendor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "ip_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "support_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "supported_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "invoice_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "managed_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fault_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due_in",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "correlation_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "justification",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_class_name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "comments",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "company",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "lease_id",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "monitor",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "cost_center",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "subcategory",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "delivery_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assignment_group",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "can_print",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "short_description",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "model_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "name",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "start_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "discovery_source",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_domain_path",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "assigned_to",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "category",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "fqdn",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "warranty_expiration",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "owned_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "asset_tag",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "manufacturer",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "purchase_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.DateType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATE",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "location",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "department",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_updated_on",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "checked_out",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "unverified",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "skip_sync",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.BooleanType": {}
+ }
+ },
+ "nativeDataType": "WDC_BOOL",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "po_number",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "order_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "gl_account",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "maintenance_schedule",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_date",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "dns_domain",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_created_by",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "mac_address",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "change_control",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.StringType": {}
+ }
+ },
+ "nativeDataType": "WDC_STRING",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "install_status",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "due",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.TimeType": {}
+ }
+ },
+ "nativeDataType": "WDC_DATETIME",
+ "recursive": false,
+ "isPartOfKey": false
+ },
+ {
+ "fieldPath": "sys_mod_count",
+ "nullable": false,
+ "type": {
+ "type": {
+ "com.linkedin.pegasus2avro.schema.NumberType": {}
+ }
+ },
+ "nativeDataType": "WDC_INT",
+ "recursive": false,
+ "isPartOfKey": false
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Executive Dashboard"
+ },
+ {
+ "id": "Incidents"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/Customer Payment Query",
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "Customer Payment Query"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "proposedSnapshot": {
+ "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": {
+ "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "aspects": [
+ {
+ "com.linkedin.pegasus2avro.common.BrowsePaths": {
+ "paths": [
+ "/prod/tableau/default/test publish datasource"
+ ]
+ }
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "browsePathsV2",
+ "aspect": {
+ "json": {
+ "path": [
+ {
+ "id": "default"
+ },
+ {
+ "id": "test publish datasource"
+ }
+ ]
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "chart",
+ "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dashboard",
+ "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,5449c627-7462-4ef7-b492-bda46be068e3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "dataset",
+ "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)",
+ "changeType": "UPSERT",
+ "aspectName": "status",
+ "aspect": {
+ "json": {
+ "removed": false
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:ATTRIBUTE",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "ATTRIBUTE"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:BINFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "BINFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:CALCULATEDFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "CALCULATEDFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:COLUMNFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "COLUMNFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:COUNT",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "COUNT"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:DATASOURCEFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "DATASOURCEFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:DIMENSION",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "DIMENSION"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:GROUPFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "GROUPFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:HIERARCHYFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "HIERARCHYFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:MEASURE",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "MEASURE"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:SETFIELD",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "SETFIELD"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:SUM",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "SUM"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:TagSheet3",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "TagSheet3"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:YEAR",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "YEAR"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+},
+{
+ "entityType": "tag",
+ "entityUrn": "urn:li:tag:tag on published datasource",
+ "changeType": "UPSERT",
+ "aspectName": "tagKey",
+ "aspect": {
+ "json": {
+ "name": "tag on published datasource"
+ }
+ },
+ "systemMetadata": {
+ "lastObserved": 1638860400000,
+ "runId": "tableau-test",
+ "lastRunId": "no-run-id-provided",
+ "pipelineName": "test_tableau_no_hidden_assets_ingest"
+ }
+}
+]
\ No newline at end of file
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_permission_ingestion_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_permission_ingestion_mces_golden.json
index cfc66af6f45699..044bc7b6d1e0b0 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_permission_ingestion_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_permission_ingestion_mces_golden.json
@@ -943,6 +943,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1225,6 +1230,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1793,6 +1803,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2413,6 +2428,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2929,6 +2949,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3081,6 +3106,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3608,6 +3638,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4116,6 +4151,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4592,6 +4632,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5097,6 +5142,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5489,6 +5539,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5855,6 +5910,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6250,6 +6310,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6697,6 +6762,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7115,6 +7185,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7455,6 +7530,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7821,6 +7901,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8083,6 +8168,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8530,6 +8620,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8873,6 +8968,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9242,6 +9342,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9634,6 +9739,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10081,6 +10191,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10268,6 +10383,7 @@
"urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)"
],
"datasets": [],
+ "dashboards": [],
"lastModified": {
"created": {
"time": 1640200234000,
@@ -10281,6 +10397,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10375,6 +10496,7 @@
"urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)"
],
"datasets": [],
+ "dashboards": [],
"lastModified": {
"created": {
"time": 1639773866000,
@@ -10388,6 +10510,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10480,6 +10607,7 @@
"description": "",
"charts": [],
"datasets": [],
+ "dashboards": [],
"lastModified": {
"created": {
"time": 1639773866000,
@@ -10493,6 +10621,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10599,6 +10732,7 @@
"urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)"
],
"datasets": [],
+ "dashboards": [],
"lastModified": {
"created": {
"time": 1639768450000,
@@ -10612,6 +10746,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11042,6 +11181,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -12900,7 +13044,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
},
{
@@ -12908,7 +13052,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
}
],
@@ -12999,6 +13143,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13340,6 +13489,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14255,6 +14409,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15216,6 +15375,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22088,6 +22252,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26208,6 +26377,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31562,6 +31736,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31906,6 +32085,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32675,6 +32859,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json
index 53d4a802541c35..621dbc642f6b1d 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json
@@ -870,8 +870,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -939,6 +939,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1221,6 +1226,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1789,6 +1799,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2409,6 +2424,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2925,6 +2945,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3077,6 +3102,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3604,6 +3634,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4112,6 +4147,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4588,6 +4628,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5093,6 +5138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5485,6 +5535,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5851,6 +5906,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6246,6 +6306,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6693,6 +6758,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7111,6 +7181,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7451,6 +7526,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7817,6 +7897,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8079,6 +8164,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8526,6 +8616,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8869,6 +8964,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9238,6 +9338,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9630,6 +9735,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10077,6 +10187,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10227,8 +10342,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10277,6 +10392,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10384,6 +10504,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10489,6 +10614,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10608,6 +10738,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11038,6 +11173,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -12896,7 +13036,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
"type": "TRANSFORMED"
},
{
@@ -12904,7 +13044,7 @@
"time": 0,
"actor": "urn:li:corpuser:unknown"
},
- "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)",
+ "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)",
"type": "TRANSFORMED"
}
],
@@ -12995,6 +13135,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13336,6 +13481,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14251,6 +14401,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15212,6 +15367,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22084,6 +22244,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26204,6 +26369,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31558,6 +31728,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31902,6 +32077,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32671,6 +32851,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_site_name_pattern_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_site_name_pattern_mces_golden.json
index 4811e462acdb2e..d5f3e86c86f16a 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_site_name_pattern_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_site_name_pattern_mces_golden.json
@@ -1043,8 +1043,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -1112,6 +1112,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1398,6 +1403,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1970,6 +1980,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2594,6 +2609,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3114,6 +3134,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3270,6 +3295,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3805,6 +3835,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4317,6 +4352,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4797,6 +4837,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5306,6 +5351,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5702,6 +5752,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6072,6 +6127,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6471,6 +6531,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6922,6 +6987,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7344,6 +7414,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7688,6 +7763,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8058,6 +8138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8324,6 +8409,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8775,6 +8865,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9122,6 +9217,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9495,6 +9595,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9891,6 +9996,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10342,6 +10452,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10496,8 +10611,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10546,6 +10661,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10657,6 +10777,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10766,6 +10891,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10889,6 +11019,11 @@
"dashboardUrl": "https://do-not-connect/#/site/site2/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11323,6 +11458,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13284,6 +13424,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13629,6 +13774,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14548,6 +14698,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15513,6 +15668,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22389,6 +22549,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26513,6 +26678,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31871,6 +32041,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32219,6 +32394,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32996,6 +33176,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_sites_as_container_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_sites_as_container_mces_golden.json
index 9c83fdbc1d8798..b4dfc7b4885c76 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_sites_as_container_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_sites_as_container_mces_golden.json
@@ -1043,8 +1043,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -1112,6 +1112,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1398,6 +1403,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1970,6 +1980,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2594,6 +2609,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3114,6 +3134,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3270,6 +3295,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3805,6 +3835,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4317,6 +4352,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4797,6 +4837,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5306,6 +5351,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5702,6 +5752,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6072,6 +6127,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6471,6 +6531,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6922,6 +6987,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7344,6 +7414,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7688,6 +7763,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8058,6 +8138,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8324,6 +8409,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8775,6 +8865,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9122,6 +9217,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9495,6 +9595,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9891,6 +9996,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10342,6 +10452,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10496,8 +10611,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10546,6 +10661,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10657,6 +10777,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10766,6 +10891,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10889,6 +11019,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11323,6 +11458,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13284,6 +13424,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13629,6 +13774,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14548,6 +14698,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15513,6 +15668,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22389,6 +22549,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26513,6 +26678,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31871,6 +32041,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32219,6 +32394,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32996,6 +33176,11 @@
"platform": "urn:li:dataPlatform:tableau"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json
index fdecf887b53056..19ce71da97572f 100644
--- a/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json
+++ b/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json
@@ -817,8 +817,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 5
}
@@ -887,6 +887,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1174,6 +1179,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -1747,6 +1757,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2372,6 +2387,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -2893,6 +2913,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3050,6 +3075,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -3587,6 +3617,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4100,6 +4135,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -4581,6 +4621,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5091,6 +5136,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5488,6 +5538,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -5859,6 +5914,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6259,6 +6319,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -6711,6 +6776,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7134,6 +7204,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7479,6 +7554,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -7850,6 +7930,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8117,6 +8202,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8569,6 +8659,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -8917,6 +9012,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9291,6 +9391,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -9688,6 +9793,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10140,6 +10250,11 @@
"actor": "urn:li:corpuser:unknown"
}
}
+ },
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
}
]
}
@@ -10294,8 +10409,8 @@
"json": {
"timestampMillis": 1638860400000,
"partitionSpec": {
- "type": "FULL_TABLE",
- "partition": "FULL_TABLE_SNAPSHOT"
+ "partition": "FULL_TABLE_SNAPSHOT",
+ "type": "FULL_TABLE"
},
"viewsCount": 3
}
@@ -10345,6 +10460,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10457,6 +10577,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10567,6 +10692,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -10691,6 +10821,11 @@
"dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -11126,6 +11261,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13088,6 +13228,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -13434,6 +13579,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -14354,6 +14504,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -15320,6 +15475,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -22197,6 +22357,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -26322,6 +26487,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -31681,6 +31851,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32030,6 +32205,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
@@ -32809,6 +32989,11 @@
"instance": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)"
}
},
+ {
+ "com.linkedin.pegasus2avro.common.GlobalTags": {
+ "tags": []
+ }
+ },
{
"com.linkedin.pegasus2avro.common.BrowsePaths": {
"paths": [
diff --git a/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py b/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py
index 38a53b323876d1..1665b1401a636a 100644
--- a/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py
+++ b/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py
@@ -21,7 +21,7 @@
from datahub.emitter.mce_builder import DEFAULT_ENV, make_schema_field_urn
from datahub.emitter.mcp import MetadataChangeProposalWrapper
-from datahub.ingestion.run.pipeline import Pipeline, PipelineContext
+from datahub.ingestion.run.pipeline import Pipeline, PipelineContext, PipelineInitError
from datahub.ingestion.source.tableau.tableau import (
TableauConfig,
TableauSiteSource,
@@ -579,7 +579,10 @@ def test_value_error_projects_and_project_pattern(
new_config["projects"] = ["default"]
new_config["project_pattern"] = {"allow": ["^Samples$"]}
- try:
+ with pytest.raises(
+ PipelineInitError,
+ match=r".*projects is deprecated. Please use project_path_pattern only.*",
+ ):
tableau_ingest_common(
pytestconfig,
tmp_path,
@@ -589,8 +592,6 @@ def test_value_error_projects_and_project_pattern(
mock_datahub_graph,
pipeline_config=new_config,
)
- except Exception as e:
- assert "projects is deprecated. Please use project_path_pattern only" in str(e)
def test_project_pattern_deprecation(pytestconfig, tmp_path, mock_datahub_graph):
@@ -603,7 +604,10 @@ def test_project_pattern_deprecation(pytestconfig, tmp_path, mock_datahub_graph)
new_config["project_pattern"] = {"allow": ["^Samples$"]}
new_config["project_path_pattern"] = {"allow": ["^Samples$"]}
- try:
+ with pytest.raises(
+ PipelineInitError,
+ match=r".*project_pattern is deprecated. Please use project_path_pattern only*",
+ ):
tableau_ingest_common(
pytestconfig,
tmp_path,
@@ -613,11 +617,6 @@ def test_project_pattern_deprecation(pytestconfig, tmp_path, mock_datahub_graph)
mock_datahub_graph,
pipeline_config=new_config,
)
- except Exception as e:
- assert (
- "project_pattern is deprecated. Please use project_path_pattern only"
- in str(e)
- )
def test_project_path_pattern_allow(pytestconfig, tmp_path, mock_datahub_graph):
@@ -1225,6 +1224,100 @@ def test_permission_ingestion(pytestconfig, tmp_path, mock_datahub_graph):
)
+@freeze_time(FROZEN_TIME)
+@pytest.mark.integration
+def test_no_hidden_assets(pytestconfig, tmp_path, mock_datahub_graph):
+ enable_logging()
+ output_file_name: str = "tableau_no_hidden_assets_mces.json"
+ golden_file_name: str = "tableau_no_hidden_assets_mces_golden.json"
+
+ new_config = config_source_default.copy()
+ del new_config["projects"]
+ new_config["ingest_hidden_assets"] = False
+
+ tableau_ingest_common(
+ pytestconfig,
+ tmp_path,
+ mock_data(),
+ golden_file_name,
+ output_file_name,
+ mock_datahub_graph,
+ pipeline_config=new_config,
+ pipeline_name="test_tableau_no_hidden_assets_ingest",
+ )
+
+
+@freeze_time(FROZEN_TIME)
+@pytest.mark.integration
+def test_ingest_tags_disabled(pytestconfig, tmp_path, mock_datahub_graph):
+ enable_logging()
+ output_file_name: str = "tableau_ingest_tags_disabled_mces.json"
+ golden_file_name: str = "tableau_ingest_tags_disabled_mces_golden.json"
+
+ new_config = config_source_default.copy()
+ new_config["ingest_tags"] = False
+
+ tableau_ingest_common(
+ pytestconfig,
+ tmp_path,
+ mock_data(),
+ golden_file_name,
+ output_file_name,
+ mock_datahub_graph,
+ pipeline_config=new_config,
+ pipeline_name="test_tableau_ingest_tags_disabled",
+ )
+
+
+@freeze_time(FROZEN_TIME)
+@pytest.mark.integration
+def test_hidden_asset_tags(pytestconfig, tmp_path, mock_datahub_graph):
+ enable_logging()
+ output_file_name: str = "tableau_hidden_asset_tags_mces.json"
+ golden_file_name: str = "tableau_hidden_asset_tags_mces_golden.json"
+
+ new_config = config_source_default.copy()
+ del new_config["projects"]
+ new_config["tags_for_hidden_assets"] = ["hidden", "private"]
+
+ tableau_ingest_common(
+ pytestconfig,
+ tmp_path,
+ mock_data(),
+ golden_file_name,
+ output_file_name,
+ mock_datahub_graph,
+ pipeline_config=new_config,
+ pipeline_name="test_tableau_hidden_asset_tags_ingest",
+ )
+
+
+@freeze_time(FROZEN_TIME)
+@pytest.mark.integration
+def test_hidden_assets_without_ingest_tags(pytestconfig, tmp_path, mock_datahub_graph):
+ enable_logging()
+ output_file_name: str = "tableau_hidden_asset_tags_error_mces.json"
+ golden_file_name: str = "tableau_hidden_asset_tags_error_mces_golden.json"
+
+ new_config = config_source_default.copy()
+ new_config["tags_for_hidden_assets"] = ["hidden", "private"]
+ new_config["ingest_tags"] = False
+
+ with pytest.raises(
+ PipelineInitError,
+ match=r".*tags_for_hidden_assets is only allowed with ingest_tags enabled.*",
+ ):
+ tableau_ingest_common(
+ pytestconfig,
+ tmp_path,
+ mock_data(),
+ golden_file_name,
+ output_file_name,
+ mock_datahub_graph,
+ pipeline_config=new_config,
+ )
+
+
@freeze_time(FROZEN_TIME)
@pytest.mark.integration
def test_permission_mode_switched_error(pytestconfig, tmp_path, mock_datahub_graph):