From f4be88d0a9866627b5d91d48480ed6d6b9bd5fc8 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 27 Jun 2024 15:00:35 -0700 Subject: [PATCH] feat(ingest): set pipeline name in system metadata (#10190) Co-authored-by: david-leifker <114954101+david-leifker@users.noreply.github.com> --- .../docs/sources/datahub/datahub_recipe.yml | 17 +- .../src/datahub/cli/check_cli.py | 2 +- .../src/datahub/ingestion/api/workunit.py | 30 +- .../ingestion/extractor/mce_extractor.py | 21 +- .../src/datahub/ingestion/run/pipeline.py | 6 + .../datahub/ingestion/run/pipeline_config.py | 8 + .../transformer/auto_helper_transformer.py | 79 + .../system_metadata_transformer.py | 45 + .../integration/iceberg/docker-compose.yml | 2 +- .../iceberg_deleted_table_mces_golden.json | 15 +- ...ap_mces_golden_deleted_group_stateful.json | 24 +- .../ldap_mces_golden_deleted_stateful.json | 12 +- .../ldap/ldap_mces_golden_group_stateful.json | 37 +- .../ldap/ldap_mces_golden_stateful.json | 16 +- .../looker/golden_looker_mces.json | 99 +- .../golden_test_independent_look_ingest.json | 138 +- .../looker_mces_golden_deleted_stateful.json | 114 +- .../metabase/metabase_mces_golden.json | 93 +- .../superset/golden_test_stateful_ingest.json | 24 +- .../tableau/tableau_cll_mces_golden.json | 2774 ++++----------- ...bleau_extract_all_project_mces_golden.json | 2851 ++++----------- .../tableau/tableau_mces_golden.json | 2765 ++++----------- .../tableau_nested_project_mces_golden.json | 2825 ++++----------- .../tableau_signout_timeout_mces_golden.json | 2765 ++++----------- ...au_with_platform_instance_mces_golden.json | 3081 ++++------------- .../tableau/test_tableau_ingest.py | 4 +- .../tests/test_helpers/graph_helpers.py | 2 +- .../glue/glue_deleted_actor_mces_golden.json | 62 +- .../tests/unit/test_bigquery_source.py | 12 +- .../tests/unit/test_mlflow_source.py | 4 +- .../tests/unit/test_usage_common.py | 20 +- 31 files changed, 5053 insertions(+), 12894 deletions(-) create mode 100644 metadata-ingestion/src/datahub/ingestion/transformer/auto_helper_transformer.py create mode 100644 metadata-ingestion/src/datahub/ingestion/transformer/system_metadata_transformer.py diff --git a/metadata-ingestion/docs/sources/datahub/datahub_recipe.yml b/metadata-ingestion/docs/sources/datahub/datahub_recipe.yml index 2885b00d819f5..9012aa6029611 100644 --- a/metadata-ingestion/docs/sources/datahub/datahub_recipe.yml +++ b/metadata-ingestion/docs/sources/datahub/datahub_recipe.yml @@ -19,14 +19,15 @@ source: enabled: true ignore_old_state: false urn_pattern: - deny: - # Ignores all datahub metadata where the urn matches the regex - - ^denied.urn.* - allow: - # Ingests all datahub metadata where the urn matches the regex. - - ^allowed.urn.* - extractor_config: - set_system_metadata: false # Replicate system metadata + deny: + # Ignores all datahub metadata where the urn matches the regex + - ^denied.urn.* + allow: + # Ingests all datahub metadata where the urn matches the regex. + - ^allowed.urn.* + +flags: + set_system_metadata: false # Replicate system metadata # Here, we write to a DataHub instance # You can also use a different sink, e.g. to write the data to a file instead diff --git a/metadata-ingestion/src/datahub/cli/check_cli.py b/metadata-ingestion/src/datahub/cli/check_cli.py index 4869c568b0967..aec436a25ebe6 100644 --- a/metadata-ingestion/src/datahub/cli/check_cli.py +++ b/metadata-ingestion/src/datahub/cli/check_cli.py @@ -59,10 +59,10 @@ def metadata_file(json_file: str, rewrite: bool, unpack_mces: bool) -> None: "config": {"filename": json_file}, "extractor": "generic", "extractor_config": { - "set_system_metadata": False, "unpack_mces_into_mcps": unpack_mces, }, }, + "flags": {"set_system_metadata": False}, "sink": { "type": "file", "config": {"filename": out_file.name}, diff --git a/metadata-ingestion/src/datahub/ingestion/api/workunit.py b/metadata-ingestion/src/datahub/ingestion/api/workunit.py index 82aefda920cb8..f203624aced56 100644 --- a/metadata-ingestion/src/datahub/ingestion/api/workunit.py +++ b/metadata-ingestion/src/datahub/ingestion/api/workunit.py @@ -2,8 +2,6 @@ from dataclasses import dataclass from typing import Iterable, Optional, Type, TypeVar, Union, overload -from deprecated import deprecated - from datahub.emitter.aspect import TIMESERIES_ASPECT_MAP from datahub.emitter.mcp import MetadataChangeProposalWrapper from datahub.ingestion.api.common import WorkUnit @@ -11,7 +9,7 @@ MetadataChangeEvent, MetadataChangeProposal, ) -from datahub.metadata.schema_classes import UsageAggregationClass, _Aspect +from datahub.metadata.schema_classes import _Aspect logger = logging.getLogger(__name__) @@ -158,11 +156,21 @@ def decompose_mce_into_mcps(self) -> Iterable["MetadataWorkUnit"]: for mcpw in mcps_from_mce(self.metadata) ] - -@deprecated -@dataclass -class UsageStatsWorkUnit(WorkUnit): - usageStats: UsageAggregationClass - - def get_metadata(self) -> dict: - return {"usage": self.usageStats} + @classmethod + def from_metadata( + cls, + metadata: Union[ + MetadataChangeEvent, MetadataChangeProposal, MetadataChangeProposalWrapper + ], + id: Optional[str] = None, + ) -> "MetadataWorkUnit": + workunit_id = id or cls.generate_workunit_id(metadata) + + if isinstance(metadata, MetadataChangeEvent): + return MetadataWorkUnit(id=workunit_id, mce=metadata) + elif isinstance(metadata, (MetadataChangeProposal)): + return MetadataWorkUnit(id=workunit_id, mcp_raw=metadata) + elif isinstance(metadata, MetadataChangeProposalWrapper): + return MetadataWorkUnit(id=workunit_id, mcp=metadata) + else: + raise ValueError(f"Unexpected metadata type {type(metadata)}") diff --git a/metadata-ingestion/src/datahub/ingestion/extractor/mce_extractor.py b/metadata-ingestion/src/datahub/ingestion/extractor/mce_extractor.py index 7ad68c0fcf8ea..73e67885dc38f 100644 --- a/metadata-ingestion/src/datahub/ingestion/extractor/mce_extractor.py +++ b/metadata-ingestion/src/datahub/ingestion/extractor/mce_extractor.py @@ -2,15 +2,13 @@ from typing import Iterable, Union from datahub.configuration.common import ConfigModel -from datahub.emitter.mce_builder import get_sys_time from datahub.emitter.mcp import MetadataChangeProposalWrapper from datahub.ingestion.api.common import RecordEnvelope from datahub.ingestion.api.source import Extractor, WorkUnit -from datahub.ingestion.api.workunit import MetadataWorkUnit, UsageStatsWorkUnit +from datahub.ingestion.api.workunit import MetadataWorkUnit from datahub.metadata.com.linkedin.pegasus2avro.mxe import ( MetadataChangeEvent, MetadataChangeProposal, - SystemMetadata, ) logger = logging.getLogger(__name__) @@ -26,10 +24,6 @@ def _try_reformat_with_black(code: str) -> str: class WorkUnitRecordExtractorConfig(ConfigModel): - set_system_metadata: bool = True - set_system_metadata_pipeline_name: bool = ( - False # false for now until the models are available in OSS - ) unpack_mces_into_mcps: bool = False @@ -65,14 +59,6 @@ def get_records( MetadataChangeProposalWrapper, ), ): - if self.config.set_system_metadata: - workunit.metadata.systemMetadata = SystemMetadata( - lastObserved=get_sys_time(), runId=self.ctx.run_id - ) - if self.config.set_system_metadata_pipeline_name: - workunit.metadata.systemMetadata.pipelineName = ( - self.ctx.pipeline_name - ) if ( isinstance(workunit.metadata, MetadataChangeEvent) and len(workunit.metadata.proposedSnapshot.aspects) == 0 @@ -92,11 +78,6 @@ def get_records( "workunit_id": workunit.id, }, ) - elif isinstance(workunit, UsageStatsWorkUnit): - logger.error( - "Dropping deprecated `UsageStatsWorkUnit`. " - "Emit a `MetadataWorkUnit` with the `datasetUsageStatistics` aspect instead." - ) else: raise ValueError(f"unknown WorkUnit type {type(workunit)}") diff --git a/metadata-ingestion/src/datahub/ingestion/run/pipeline.py b/metadata-ingestion/src/datahub/ingestion/run/pipeline.py index 93cea62cb1a7e..4e66ee9c978f0 100644 --- a/metadata-ingestion/src/datahub/ingestion/run/pipeline.py +++ b/metadata-ingestion/src/datahub/ingestion/run/pipeline.py @@ -39,6 +39,9 @@ from datahub.ingestion.sink.file import FileSink, FileSinkConfig from datahub.ingestion.sink.sink_registry import sink_registry from datahub.ingestion.source.source_registry import source_registry +from datahub.ingestion.transformer.system_metadata_transformer import ( + SystemMetadataTransformer, +) from datahub.ingestion.transformer.transform_registry import transform_registry from datahub.metadata.schema_classes import MetadataChangeProposalClass from datahub.telemetry import stats, telemetry @@ -317,6 +320,9 @@ def _configure_transforms(self) -> None: f"Transformer type:{transformer_type},{transformer_class} configured" ) + # Add the system metadata transformer at the end of the list. + self.transformers.append(SystemMetadataTransformer(self.ctx)) + def _configure_reporting( self, report_to: Optional[str], no_default_report: bool ) -> None: diff --git a/metadata-ingestion/src/datahub/ingestion/run/pipeline_config.py b/metadata-ingestion/src/datahub/ingestion/run/pipeline_config.py index 179a1df3a5226..98629ba030695 100644 --- a/metadata-ingestion/src/datahub/ingestion/run/pipeline_config.py +++ b/metadata-ingestion/src/datahub/ingestion/run/pipeline_config.py @@ -62,6 +62,14 @@ class FlagsConfig(ConfigModel): ), ) + set_system_metadata: bool = Field( + True, description="Set system metadata on entities." + ) + set_system_metadata_pipeline_name: bool = Field( + True, + description="Set system metadata pipeline name. Requires `set_system_metadata` to be enabled.", + ) + class PipelineConfig(ConfigModel): source: SourceConfig diff --git a/metadata-ingestion/src/datahub/ingestion/transformer/auto_helper_transformer.py b/metadata-ingestion/src/datahub/ingestion/transformer/auto_helper_transformer.py new file mode 100644 index 0000000000000..cec7be36060b7 --- /dev/null +++ b/metadata-ingestion/src/datahub/ingestion/transformer/auto_helper_transformer.py @@ -0,0 +1,79 @@ +from typing import Callable, Iterable, Optional, Union + +from datahub.emitter.mcp import MetadataChangeProposalWrapper +from datahub.ingestion.api.common import ControlRecord, PipelineContext, RecordEnvelope +from datahub.ingestion.api.transform import Transformer +from datahub.ingestion.api.workunit import MetadataWorkUnit +from datahub.metadata.com.linkedin.pegasus2avro.mxe import ( + MetadataChangeEvent, + MetadataChangeProposal, +) + + +class AutoHelperTransformer(Transformer): + """Converts an auto_* source helper into a transformer. + + Important usage note: this assumes that the auto helper is stateless. The converter + will be called multiple times, once for each batch of records. If the helper + attempts to maintain state or perform some cleanup at the end of the stream, it + will not behave correctly. + """ + + def __init__( + self, + converter: Callable[[Iterable[MetadataWorkUnit]], Iterable[MetadataWorkUnit]], + ): + self.converter = converter + + def transform( + self, record_envelopes: Iterable[RecordEnvelope] + ) -> Iterable[RecordEnvelope]: + records = list(record_envelopes) + + normal_records = [r for r in records if not isinstance(r.record, ControlRecord)] + control_records = [r for r in records if isinstance(r.record, ControlRecord)] + + yield from self._from_workunits( + self.converter( + self._into_workunits(normal_records), + ) + ) + + # Pass through control records as-is. Note that this isn't fully correct, since it technically + # reorders the control records relative to the normal records. This is ok since the only control + # record we have marks the end of the stream. + yield from control_records + + @classmethod + def _into_workunits( + cls, + stream: Iterable[ + RecordEnvelope[ + Union[ + MetadataChangeEvent, + MetadataChangeProposal, + MetadataChangeProposalWrapper, + ] + ] + ], + ) -> Iterable[MetadataWorkUnit]: + for record in stream: + workunit_id: Optional[str] = record.metadata.get("workunit_id") + metadata = record.record + yield MetadataWorkUnit.from_metadata(metadata, id=workunit_id) + + @classmethod + def _from_workunits( + cls, stream: Iterable[MetadataWorkUnit] + ) -> Iterable[RecordEnvelope]: + for workunit in stream: + yield RecordEnvelope( + workunit.metadata, + { + "workunit_id": workunit.id, + }, + ) + + @classmethod + def create(cls, config_dict: dict, ctx: PipelineContext) -> Transformer: + raise NotImplementedError(f"{cls.__name__} cannot be created from config") diff --git a/metadata-ingestion/src/datahub/ingestion/transformer/system_metadata_transformer.py b/metadata-ingestion/src/datahub/ingestion/transformer/system_metadata_transformer.py new file mode 100644 index 0000000000000..8a0636f5a11a9 --- /dev/null +++ b/metadata-ingestion/src/datahub/ingestion/transformer/system_metadata_transformer.py @@ -0,0 +1,45 @@ +import functools +from typing import Iterable + +from datahub.emitter.mce_builder import get_sys_time +from datahub.ingestion.api.common import PipelineContext, RecordEnvelope +from datahub.ingestion.api.transform import Transformer +from datahub.ingestion.api.workunit import MetadataWorkUnit +from datahub.ingestion.transformer.auto_helper_transformer import AutoHelperTransformer +from datahub.metadata.schema_classes import SystemMetadataClass + + +def auto_system_metadata( + ctx: PipelineContext, + stream: Iterable[MetadataWorkUnit], +) -> Iterable[MetadataWorkUnit]: + if not ctx.pipeline_config: + raise ValueError("Pipeline config is required for system metadata") + set_system_metadata = ctx.pipeline_config.flags.set_system_metadata + set_pipeline_name = ctx.pipeline_config.flags.set_system_metadata_pipeline_name + + for workunit in stream: + if set_system_metadata: + workunit.metadata.systemMetadata = SystemMetadataClass( + lastObserved=get_sys_time(), runId=ctx.run_id + ) + if set_pipeline_name: + workunit.metadata.systemMetadata.pipelineName = ctx.pipeline_name + + yield workunit + + +class SystemMetadataTransformer(Transformer): + def __init__(self, ctx: PipelineContext): + self._inner_transfomer = AutoHelperTransformer( + functools.partial(auto_system_metadata, ctx) + ) + + def transform( + self, record_envelopes: Iterable[RecordEnvelope] + ) -> Iterable[RecordEnvelope]: + yield from self._inner_transfomer.transform(record_envelopes) + + @classmethod + def create(cls, config_dict: dict, ctx: PipelineContext) -> Transformer: + raise NotImplementedError(f"{cls.__name__} cannot be created from config") diff --git a/metadata-ingestion/tests/integration/iceberg/docker-compose.yml b/metadata-ingestion/tests/integration/iceberg/docker-compose.yml index ab5c534e7289b..8baae6e8ab636 100644 --- a/metadata-ingestion/tests/integration/iceberg/docker-compose.yml +++ b/metadata-ingestion/tests/integration/iceberg/docker-compose.yml @@ -19,7 +19,7 @@ services: - AWS_REGION=us-east-1 ports: - 8888:8888 - - 8080:8080 + - 28080:8080 - 10000:10000 - 10001:10001 rest: diff --git a/metadata-ingestion/tests/integration/iceberg/iceberg_deleted_table_mces_golden.json b/metadata-ingestion/tests/integration/iceberg/iceberg_deleted_table_mces_golden.json index 21f1f634c4563..3321fcac0d73e 100644 --- a/metadata-ingestion/tests/integration/iceberg/iceberg_deleted_table_mces_golden.json +++ b/metadata-ingestion/tests/integration/iceberg/iceberg_deleted_table_mces_golden.json @@ -13,13 +13,13 @@ "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": { "owner": "root", - "created-at": "2024-05-22T14:09:15.234903700Z", + "created-at": "2024-06-27T17:29:32.492204247Z", "write.format.default": "parquet", "location": "s3a://warehouse/wh/nyc/another_taxis", "format-version": "1", "partition-spec": "[{\"name\": \"trip_date\", \"transform\": \"identity\", \"source\": \"trip_date\", \"source-id\": 2, \"source-type\": \"timestamptz\", \"field-id\": 1000}]", - "snapshot-id": "1706020810864905360", - "manifest-list": "s3a://warehouse/wh/nyc/another_taxis/metadata/snap-1706020810864905360-1-90ad8346-ac1b-4e73-bb30-dfd9b0b0e0dc.avro" + "snapshot-id": "1131595459662979239", + "manifest-list": "s3a://warehouse/wh/nyc/another_taxis/metadata/snap-1131595459662979239-1-0e80739b-774c-4eda-9d96-3a4c70873c32.avro" }, "tags": [] } @@ -150,7 +150,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "iceberg-2020_04_14-07_00_00", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -167,7 +168,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "iceberg-2020_04_14-07_00_00", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -183,7 +185,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "iceberg-2020_04_14-07_00_00", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_group_stateful.json b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_group_stateful.json index d4bafbd664a15..2718fcf3c87a4 100644 --- a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_group_stateful.json +++ b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_group_stateful.json @@ -17,7 +17,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -26,12 +28,15 @@ "changeType": "UPSERT", "aspectName": "status", "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" + "json": { + "removed": false + } }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -40,12 +45,15 @@ "changeType": "UPSERT", "aspectName": "status", "aspect": { - "value": "{\"removed\": true}", - "contentType": "application/json" + "json": { + "removed": true + } }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } } -] +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_stateful.json b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_stateful.json index 7462ea1458278..3b52dddad4ff0 100644 --- a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_stateful.json +++ b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_deleted_stateful.json @@ -26,7 +26,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -41,7 +43,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -56,7 +60,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_group_stateful.json b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_group_stateful.json index dc97146982795..ddc1520c7d748 100644 --- a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_group_stateful.json +++ b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_group_stateful.json @@ -17,7 +17,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -38,7 +40,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -47,12 +51,15 @@ "changeType": "UPSERT", "aspectName": "status", "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" + "json": { + "removed": false + } }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -61,12 +68,15 @@ "changeType": "UPSERT", "aspectName": "status", "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" + "json": { + "removed": false + } }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -75,12 +85,15 @@ "changeType": "UPSERT", "aspectName": "status", "aspect": { - "value": "{\"removed\": true}", - "contentType": "application/json" + "json": { + "removed": true + } }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } } -] +] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_stateful.json b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_stateful.json index d79bb56f1ab5f..1a3e4f4a8262f 100644 --- a/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_stateful.json +++ b/metadata-ingestion/tests/integration/ldap/ldap_mces_golden_stateful.json @@ -26,7 +26,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -59,7 +61,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -74,7 +78,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } }, { @@ -89,7 +95,9 @@ }, "systemMetadata": { "lastObserved": 1660460400000, - "runId": "ldap-test" + "runId": "ldap-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "ldap-test-pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/looker/golden_looker_mces.json b/metadata-ingestion/tests/integration/looker/golden_looker_mces.json index 2bebb247a41aa..9ec1a69c6ffdd 100644 --- a/metadata-ingestion/tests/integration/looker/golden_looker_mces.json +++ b/metadata-ingestion/tests/integration/looker/golden_looker_mces.json @@ -35,7 +35,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -51,7 +52,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -112,7 +114,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -149,7 +152,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -230,7 +234,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -251,7 +256,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -267,7 +273,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -283,7 +290,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -301,7 +309,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -321,7 +330,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -342,7 +352,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -358,7 +369,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -374,7 +386,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -392,7 +405,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -412,7 +426,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -509,7 +524,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -527,7 +543,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -543,7 +560,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -559,7 +577,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -583,7 +602,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -680,7 +700,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -698,7 +719,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -714,7 +736,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -730,7 +753,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -754,7 +778,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -774,7 +799,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -794,7 +820,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -814,7 +841,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -830,7 +858,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -846,7 +875,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -862,7 +892,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -878,7 +909,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -894,7 +926,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/looker/golden_test_independent_look_ingest.json b/metadata-ingestion/tests/integration/looker/golden_test_independent_look_ingest.json index f5cac9cb2d025..465244c492209 100644 --- a/metadata-ingestion/tests/integration/looker/golden_test_independent_look_ingest.json +++ b/metadata-ingestion/tests/integration/looker/golden_test_independent_look_ingest.json @@ -17,7 +17,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -33,7 +34,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -49,7 +51,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -67,7 +70,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -87,7 +91,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -138,7 +143,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -156,7 +162,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -183,7 +190,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -231,7 +239,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -247,7 +256,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -263,7 +273,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -287,7 +298,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -348,7 +360,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -409,7 +422,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -460,7 +474,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -478,7 +493,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -494,7 +510,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -510,7 +527,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -526,7 +544,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -550,7 +569,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -571,7 +591,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -587,7 +608,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -603,7 +625,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -621,7 +644,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -641,7 +665,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -662,7 +687,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -678,7 +704,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -694,7 +721,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -712,7 +740,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -732,7 +761,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -829,7 +859,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -847,7 +878,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -863,7 +895,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -879,7 +912,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -903,7 +937,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1000,7 +1035,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1018,7 +1054,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1034,7 +1071,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1050,7 +1088,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1074,7 +1113,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1094,7 +1134,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1114,7 +1155,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1134,7 +1176,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1150,7 +1193,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1166,7 +1210,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } }, { @@ -1182,7 +1227,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "execution-1" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/looker/looker_mces_golden_deleted_stateful.json b/metadata-ingestion/tests/integration/looker/looker_mces_golden_deleted_stateful.json index 48eddea1e2e00..15f1758aa4b83 100644 --- a/metadata-ingestion/tests/integration/looker/looker_mces_golden_deleted_stateful.json +++ b/metadata-ingestion/tests/integration/looker/looker_mces_golden_deleted_stateful.json @@ -17,7 +17,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -33,7 +34,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -49,7 +51,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -67,7 +70,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -87,7 +91,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -138,7 +143,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -156,7 +162,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -183,7 +190,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -231,7 +239,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -247,7 +256,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -263,7 +273,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -287,7 +298,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -348,7 +360,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -409,7 +422,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -430,7 +444,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -446,7 +461,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -462,7 +478,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -480,7 +497,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -500,7 +518,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -597,7 +616,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -615,7 +635,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -631,7 +652,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -647,7 +669,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -671,7 +694,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -691,7 +715,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -711,7 +736,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -731,7 +757,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -747,7 +774,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -763,7 +791,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -779,7 +808,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { @@ -795,12 +825,13 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(looker,dashboards.11)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(looker,dashboard_elements.10)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -811,12 +842,13 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(looker,dashboard_elements.10)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:looker,bogus data.explore.my_view,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -827,12 +859,13 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:looker,bogus data.explore.my_view,PROD)", + "entityType": "dashboard", + "entityUrn": "urn:li:dashboard:(looker,dashboards.11)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -843,7 +876,8 @@ "systemMetadata": { "lastObserved": 1586847600000, "runId": "looker-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "stateful-looker-pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/metabase/metabase_mces_golden.json b/metadata-ingestion/tests/integration/metabase/metabase_mces_golden.json index 9bab81eaa228b..96ba9fd9c674f 100644 --- a/metadata-ingestion/tests/integration/metabase/metabase_mces_golden.json +++ b/metadata-ingestion/tests/integration/metabase/metabase_mces_golden.json @@ -49,6 +49,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -61,7 +62,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -105,6 +107,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -117,7 +120,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -164,6 +168,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -176,7 +181,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -216,6 +222,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -228,7 +235,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -268,6 +276,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -280,7 +289,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -320,6 +330,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -332,7 +343,62 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { + "urn": "urn:li:dashboard:(metabase,20)", + "aspects": [ + { + "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { + "customProperties": {}, + "title": "Dashboard 2", + "description": "", + "charts": [ + "urn:li:chart:(metabase,1)", + "urn:li:chart:(metabase,2)", + "urn:li:chart:(metabase,3)" + ], + "datasets": [], + "lastModified": { + "created": { + "time": 1705398694904, + "actor": "urn:li:corpuser:admin@metabase.com" + }, + "lastModified": { + "time": 1705398694904, + "actor": "urn:li:corpuser:admin@metabase.com" + } + }, + "dashboardUrl": "http://localhost:3000/dashboard/20" + } + }, + { + "com.linkedin.pegasus2avro.common.Ownership": { + "owners": [ + { + "owner": "urn:li:corpuser:admin@metabase.com", + "type": "DATAOWNER" + } + ], + "ownerTypes": {}, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + } + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1636614000000, + "runId": "metabase-test", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -348,7 +414,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -364,7 +431,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -380,7 +448,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -396,7 +465,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -412,7 +482,8 @@ "systemMetadata": { "lastObserved": 1636614000000, "runId": "metabase-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/superset/golden_test_stateful_ingest.json b/metadata-ingestion/tests/integration/superset/golden_test_stateful_ingest.json index cf38341085c1b..0ff90cea7bccc 100644 --- a/metadata-ingestion/tests/integration/superset/golden_test_stateful_ingest.json +++ b/metadata-ingestion/tests/integration/superset/golden_test_stateful_ingest.json @@ -44,7 +44,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -90,7 +92,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -136,7 +140,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -182,7 +188,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -228,7 +236,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } }, { @@ -243,7 +253,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "superset-2020_04_14-07_00_00" + "runId": "superset-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "test_pipeline" } } ] \ No newline at end of file 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 d8c27057872c8..5366930210702 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_cll_mces_golden.json @@ -16,7 +16,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32,7 +33,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -48,7 +50,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -66,7 +69,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -82,7 +86,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -102,7 +107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -118,7 +124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -134,7 +141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -152,7 +160,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -168,7 +177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -188,7 +198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -204,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -220,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -238,7 +251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -254,7 +268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -276,7 +291,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -292,7 +308,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -308,7 +325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -326,7 +344,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -342,6 +361,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -351,7 +371,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -367,7 +388,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -388,7 +410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -410,7 +433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -426,7 +450,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -442,7 +467,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -460,7 +486,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -476,6 +503,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -485,7 +513,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -505,7 +534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -521,7 +551,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -542,7 +573,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -564,7 +596,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -580,7 +613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -596,7 +630,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -614,7 +649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -630,6 +666,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -639,7 +676,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -655,7 +693,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -676,7 +715,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -698,7 +738,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -714,7 +755,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -730,7 +772,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -748,7 +791,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -764,6 +808,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -773,7 +818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -789,7 +835,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -810,7 +857,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -831,7 +879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -884,6 +933,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -896,7 +946,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -912,7 +963,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1085,7 +1137,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1110,7 +1163,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1161,6 +1215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1173,7 +1228,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1189,7 +1245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1648,7 +1705,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1673,7 +1731,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1724,6 +1783,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1736,7 +1796,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -1752,7 +1813,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2263,7 +2325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2288,7 +2351,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2339,6 +2403,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2351,7 +2416,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2367,7 +2433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2774,7 +2841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2799,7 +2867,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2850,6 +2919,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2862,7 +2932,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2878,7 +2949,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2921,7 +2993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2946,7 +3019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -2997,6 +3071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3009,7 +3084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3025,7 +3101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3236,7 +3313,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3261,7 +3339,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3312,6 +3391,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3333,7 +3413,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3349,7 +3430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3435,7 +3517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3460,7 +3543,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3514,6 +3598,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3526,7 +3611,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3542,7 +3628,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3938,7 +4025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -3963,7 +4051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4017,6 +4106,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4029,7 +4119,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4045,7 +4136,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4409,7 +4501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4434,7 +4527,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4488,6 +4582,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4500,7 +4595,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4516,7 +4612,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4912,7 +5009,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4937,7 +5035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -4988,6 +5087,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5000,7 +5100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5016,7 +5117,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5296,7 +5398,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5321,7 +5424,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5375,6 +5479,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5387,7 +5492,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5403,7 +5509,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5660,7 +5767,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5685,7 +5793,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5736,6 +5845,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5748,7 +5858,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -5764,7 +5875,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6047,7 +6159,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6072,7 +6185,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6126,6 +6240,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6138,7 +6253,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6154,7 +6270,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6489,7 +6606,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6514,7 +6632,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6568,6 +6687,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6580,7 +6700,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6596,7 +6717,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6905,7 +7027,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6930,7 +7053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -6981,6 +7105,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6993,7 +7118,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7009,7 +7135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7237,7 +7364,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7262,7 +7390,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7316,6 +7445,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7328,7 +7458,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7344,7 +7475,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7601,7 +7733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7626,7 +7759,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7677,6 +7811,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7689,7 +7824,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7705,7 +7841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7855,7 +7992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7880,7 +8018,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7934,6 +8073,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7946,7 +8086,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -7962,7 +8103,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8297,7 +8439,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8322,7 +8465,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8376,6 +8520,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8388,7 +8533,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8404,7 +8550,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8635,7 +8782,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8660,7 +8808,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8714,6 +8863,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8726,7 +8876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8742,7 +8893,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -8999,7 +9151,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9024,7 +9177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9078,6 +9232,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9090,7 +9245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9106,7 +9262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9389,7 +9546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9414,7 +9572,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9465,6 +9624,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9477,7 +9637,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9493,7 +9654,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9831,7 +9993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9856,7 +10019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9907,6 +10071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9919,7 +10084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -9935,7 +10101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10021,7 +10188,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10046,7 +10214,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10067,7 +10236,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10122,6 +10292,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10134,7 +10305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10150,7 +10322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10175,7 +10348,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10225,6 +10399,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10237,7 +10412,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10253,7 +10429,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10278,7 +10455,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10326,6 +10504,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10338,7 +10517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10354,7 +10534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10379,7 +10560,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10441,6 +10623,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10453,7 +10636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10469,7 +10653,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10494,7 +10679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10838,7 +11024,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -10866,6 +11053,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12629,7 +12817,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -12647,7 +12836,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -12663,7 +12853,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -12688,7 +12879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -12789,7 +12981,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -12817,6 +13010,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13032,7 +13226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13050,7 +13245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13066,7 +13262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13091,7 +13288,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13124,7 +13322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13152,6 +13351,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13539,7 +13739,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13557,7 +13758,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13573,7 +13775,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -13598,7 +13801,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14033,7 +14237,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14061,6 +14266,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -14783,7 +14989,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14801,7 +15008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14817,7 +15025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14842,7 +15051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -14988,7 +15198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -15016,6 +15227,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21606,7 +21818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -21624,7 +21837,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -21640,7 +21854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -21665,7 +21880,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -21854,7 +22070,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -21882,6 +22099,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -25758,7 +25976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -25776,7 +25995,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -25792,7 +26012,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -25817,7 +26038,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -25968,7 +26190,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -25996,6 +26219,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31134,7 +31358,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31152,7 +31377,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31168,7 +31394,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31193,7 +31420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31316,7 +31544,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31344,6 +31573,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31546,7 +31776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31564,7 +31795,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31580,7 +31812,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31605,7 +31838,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31654,7 +31888,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31682,6 +31917,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31774,7 +32010,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31792,7 +32029,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31808,7 +32046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31833,7 +32072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31937,7 +32177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -31974,6 +32215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32222,7 +32464,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32240,7 +32483,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32256,7 +32500,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32277,7 +32522,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32411,7 +32657,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -32439,6 +32686,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33291,7 +33539,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33309,7 +33558,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33325,7 +33575,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33346,7 +33597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33362,7 +33614,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33395,7 +33648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33530,7 +33784,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33549,7 +33804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33574,7 +33830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33590,7 +33847,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33631,7 +33889,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33778,7 +34037,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33797,7 +34057,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33818,7 +34079,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33871,7 +34133,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33958,7 +34221,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -33977,7 +34241,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34000,7 +34265,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34164,7 +34430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34190,7 +34457,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34426,7 +34694,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34452,7 +34721,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34664,7 +34934,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34690,7 +34961,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34854,7 +35126,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -34880,7 +35153,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35032,7 +35306,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35058,7 +35333,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35198,7 +35474,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35224,7 +35501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35316,7 +35594,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35342,7 +35621,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35410,7 +35690,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35433,7 +35714,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35501,7 +35783,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35524,7 +35807,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35820,7 +36104,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -35843,7 +36128,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -36633,7 +36919,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -36659,7 +36946,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -37543,7 +37831,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -37569,7 +37858,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -38525,7 +38815,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -38551,7 +38842,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -39375,7 +39667,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -39401,7 +39694,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -39709,7 +40003,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -39735,7 +40030,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -40583,7 +40879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -40609,7 +40906,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -41601,7 +41899,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -41627,7 +41926,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42487,7 +42787,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42513,7 +42814,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42535,7 +42837,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42558,7 +42861,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42580,7 +42884,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42603,7 +42908,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42624,7 +42930,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42647,7 +42954,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42663,7 +42971,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42679,7 +42988,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42695,7 +43005,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42711,7 +43022,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42727,7 +43039,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42743,7 +43056,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42759,7 +43073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42775,7 +43090,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42791,7 +43107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42807,7 +43124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42823,7 +43141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42839,7 +43158,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42855,7 +43175,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42871,7 +43192,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42887,7 +43209,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42903,7 +43226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42919,7 +43243,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42935,7 +43260,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42951,7 +43277,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42967,7 +43294,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42983,7 +43311,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -42999,7 +43328,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43015,7 +43345,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43031,7 +43362,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43047,7 +43379,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43063,7 +43396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43079,7 +43413,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43095,7 +43430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43111,7 +43447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43127,7 +43464,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43143,7 +43481,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43159,7 +43498,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43175,7 +43515,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43191,7 +43532,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43207,7 +43549,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43223,7 +43566,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43239,7 +43583,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43255,7 +43600,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43271,7 +43617,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43287,7 +43634,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43303,7 +43651,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43319,7 +43668,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43335,7 +43685,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43351,7 +43702,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43367,7 +43719,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43383,7 +43736,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43399,7 +43753,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43415,7 +43770,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43431,7 +43787,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43447,7 +43804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43463,7 +43821,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43479,7 +43838,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43495,7 +43855,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43511,7 +43872,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43527,7 +43889,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43543,7 +43906,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43559,7 +43923,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43575,7 +43940,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43591,7 +43957,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43607,7 +43974,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43623,7 +43991,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43639,7 +44008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43655,7 +44025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43671,7 +44042,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43687,7 +44059,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43703,7 +44076,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43719,7 +44093,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43735,7 +44110,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43751,7 +44127,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43767,7 +44144,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43783,7 +44161,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43799,7 +44178,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43815,7 +44195,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43831,7 +44212,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43847,7 +44229,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43863,7 +44246,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43879,7 +44263,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43895,7 +44280,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43911,7 +44297,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } }, { @@ -43927,1703 +44314,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_cll_ingest" } } ] \ No newline at end of file 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 250c43b7fc2da..423bed0a1bdf1 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 @@ -16,7 +16,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32,7 +33,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -48,7 +50,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -66,7 +69,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -82,7 +86,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -102,7 +107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -118,7 +124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -134,7 +141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -152,7 +160,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -168,7 +177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -188,7 +198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -204,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -220,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -238,7 +251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -254,7 +268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -274,7 +289,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -290,7 +306,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -306,7 +323,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -324,7 +342,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -340,7 +359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -361,7 +381,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -383,7 +404,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -399,7 +421,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -415,7 +438,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -433,7 +457,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -449,6 +474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -458,7 +484,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -474,7 +501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -495,7 +523,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -517,7 +546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -533,7 +563,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -549,7 +580,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -567,7 +599,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -583,6 +616,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -592,7 +626,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -612,7 +647,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -628,7 +664,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -649,7 +686,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -671,7 +709,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -687,7 +726,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -703,7 +743,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -721,7 +762,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -737,6 +779,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -746,7 +789,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -762,7 +806,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -783,7 +828,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -805,7 +851,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -821,7 +868,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -837,7 +885,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -855,7 +904,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -871,6 +921,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -880,7 +931,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -896,7 +948,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -917,7 +970,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -939,7 +993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -955,7 +1010,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -971,7 +1027,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -989,7 +1046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1005,6 +1063,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1014,7 +1073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1030,7 +1090,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1055,7 +1116,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1076,7 +1138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1129,6 +1192,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1141,7 +1205,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1157,7 +1222,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1330,7 +1396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1355,7 +1422,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1406,6 +1474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1418,7 +1487,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1434,7 +1504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1893,7 +1964,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1918,7 +1990,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1969,6 +2042,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1981,7 +2055,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -1997,7 +2072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -2508,7 +2584,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -2533,7 +2610,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -2584,6 +2662,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2596,7 +2675,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -2612,7 +2692,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3019,7 +3100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3044,7 +3126,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3095,6 +3178,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3107,7 +3191,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3123,7 +3208,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3166,7 +3252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3191,7 +3278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3242,6 +3330,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3254,7 +3343,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3270,7 +3360,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3481,7 +3572,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3506,7 +3598,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3557,6 +3650,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3578,7 +3672,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3594,7 +3689,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3680,7 +3776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3705,7 +3802,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3759,6 +3857,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3771,7 +3870,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -3787,7 +3887,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4183,7 +4284,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4208,7 +4310,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4262,6 +4365,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4274,7 +4378,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4290,7 +4395,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4654,7 +4760,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4679,7 +4786,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4733,6 +4841,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4745,7 +4854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -4761,7 +4871,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5157,7 +5268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5182,7 +5294,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5233,6 +5346,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5245,7 +5359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5261,7 +5376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5541,7 +5657,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5566,7 +5683,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5620,6 +5738,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5632,7 +5751,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5648,7 +5768,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5905,7 +6026,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5930,7 +6052,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -5981,6 +6104,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5993,7 +6117,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6009,7 +6134,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6292,7 +6418,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6317,7 +6444,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6371,6 +6499,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6383,7 +6512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6399,7 +6529,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6734,7 +6865,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6759,7 +6891,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6813,6 +6946,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6825,7 +6959,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -6841,7 +6976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7150,7 +7286,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7175,7 +7312,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7226,6 +7364,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7238,7 +7377,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7254,7 +7394,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7482,7 +7623,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7507,7 +7649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7561,6 +7704,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7573,7 +7717,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7589,7 +7734,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7846,7 +7992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7871,7 +8018,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7922,6 +8070,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7934,7 +8083,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -7950,7 +8100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8100,7 +8251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8125,7 +8277,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8179,6 +8332,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8191,7 +8345,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8207,7 +8362,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8542,7 +8698,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8567,7 +8724,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8621,6 +8779,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8633,7 +8792,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8649,7 +8809,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8880,7 +9041,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8905,7 +9067,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8959,6 +9122,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8971,7 +9135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -8987,7 +9152,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9244,7 +9410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9269,7 +9436,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9323,6 +9491,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9335,7 +9504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9351,7 +9521,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9634,7 +9805,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9659,7 +9831,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9710,6 +9883,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9722,7 +9896,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -9738,7 +9913,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10076,7 +10252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10101,7 +10278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10152,6 +10330,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10164,7 +10343,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10180,7 +10360,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10266,7 +10447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10291,7 +10473,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10312,7 +10495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10367,6 +10551,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10379,7 +10564,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10395,7 +10581,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10420,7 +10607,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10470,6 +10658,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10482,7 +10671,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10498,7 +10688,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10523,7 +10714,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10571,6 +10763,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10583,7 +10776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10599,7 +10793,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10624,7 +10819,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10686,6 +10882,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10698,7 +10895,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10714,7 +10912,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -10739,7 +10938,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -11083,7 +11283,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -11111,6 +11312,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12874,7 +13076,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -12892,7 +13095,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -12908,7 +13112,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -12933,7 +13138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13034,7 +13240,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13062,6 +13269,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13277,7 +13485,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13295,7 +13504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13311,7 +13521,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13336,7 +13547,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13369,7 +13581,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13397,6 +13610,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13784,7 +13998,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13802,7 +14017,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13818,7 +14034,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -13843,7 +14060,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -14278,7 +14496,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -14306,6 +14525,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -15028,7 +15248,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -15046,7 +15267,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -15062,7 +15284,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -15087,7 +15310,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -15233,7 +15457,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -15261,6 +15486,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21851,7 +22077,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -21869,7 +22096,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -21885,7 +22113,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -21910,7 +22139,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -22099,7 +22329,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -22127,6 +22358,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -26003,7 +26235,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -26021,7 +26254,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -26037,7 +26271,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -26062,7 +26297,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -26213,7 +26449,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -26241,6 +26478,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31379,7 +31617,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31397,7 +31636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31413,7 +31653,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31438,7 +31679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31561,7 +31803,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31589,6 +31832,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31791,7 +32035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31809,7 +32054,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31825,7 +32071,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31850,7 +32097,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31899,7 +32147,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -31927,6 +32176,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32019,7 +32269,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32037,7 +32288,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32053,7 +32305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32078,7 +32331,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32182,7 +32436,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32219,6 +32474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32467,7 +32723,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32485,7 +32742,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32501,7 +32759,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32522,7 +32781,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32656,7 +32916,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -32684,6 +32945,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33536,7 +33798,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33554,7 +33817,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33570,7 +33834,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33591,7 +33856,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33607,7 +33873,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33640,7 +33907,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33775,7 +34043,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33794,7 +34063,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33819,7 +34089,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33835,7 +34106,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -33876,7 +34148,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34023,7 +34296,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34042,7 +34316,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34063,7 +34338,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34150,7 +34426,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34169,7 +34446,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34192,7 +34470,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34356,7 +34635,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34382,7 +34662,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34618,7 +34899,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34644,7 +34926,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34856,7 +35139,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -34882,7 +35166,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35046,7 +35331,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35072,7 +35358,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35224,7 +35511,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35250,7 +35538,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35390,7 +35679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35416,7 +35706,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35508,7 +35799,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35534,7 +35826,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35602,7 +35895,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35625,7 +35919,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35693,7 +35988,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -35716,7 +36012,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -36012,7 +36309,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -36035,7 +36333,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -36825,7 +37124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -36851,7 +37151,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -37735,7 +38036,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -37761,7 +38063,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -38717,7 +39020,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -38743,7 +39047,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -39567,7 +39872,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -39593,7 +39899,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -39901,7 +40208,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -39927,7 +40235,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -40775,7 +41084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -40801,7 +41111,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -41793,7 +42104,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -41819,7 +42131,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42679,7 +42992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42705,7 +43019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42727,7 +43042,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42750,7 +43066,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42772,7 +43089,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42795,7 +43113,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42816,7 +43135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42839,7 +43159,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42855,7 +43176,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42871,7 +43193,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42887,7 +43210,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42903,7 +43227,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42919,7 +43244,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42935,7 +43261,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42951,7 +43278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42967,7 +43295,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42983,7 +43312,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -42999,7 +43329,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43015,7 +43346,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43031,7 +43363,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43047,7 +43380,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43063,7 +43397,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43079,7 +43414,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43095,7 +43431,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43111,7 +43448,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43127,7 +43465,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43143,7 +43482,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43159,7 +43499,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43175,7 +43516,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43191,7 +43533,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43207,7 +43550,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43223,7 +43567,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43239,7 +43584,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43255,7 +43601,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43271,7 +43618,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43287,7 +43635,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43303,7 +43652,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43319,7 +43669,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43335,7 +43686,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43351,7 +43703,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43367,7 +43720,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43383,7 +43737,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43399,7 +43754,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43415,7 +43771,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43431,7 +43788,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43447,7 +43805,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43463,7 +43822,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43479,7 +43839,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43495,7 +43856,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43511,7 +43873,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43527,7 +43890,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43543,7 +43907,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43559,7 +43924,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43575,7 +43941,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43591,7 +43958,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43607,7 +43975,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43623,7 +43992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43639,7 +44009,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43655,7 +44026,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43671,7 +44043,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43687,7 +44060,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43703,7 +44077,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43719,7 +44094,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43735,7 +44111,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43751,7 +44128,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43767,7 +44145,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43783,7 +44162,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43799,7 +44179,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43815,7 +44196,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43831,7 +44213,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43847,7 +44230,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43863,7 +44247,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43879,7 +44264,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43895,7 +44281,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43911,7 +44298,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43927,7 +44315,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43943,7 +44332,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43959,7 +44349,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43975,7 +44366,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -43991,7 +44383,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44007,7 +44400,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44023,7 +44417,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44039,7 +44434,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44055,7 +44451,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44071,7 +44468,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } }, { @@ -44087,1749 +44485,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" + "lastRunId": "no-run-id-provided", + "pipelineName": "tableau-test-pipeline" } } ] \ 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 c5417a8d212bc..a112f905905c3 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json @@ -16,7 +16,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32,7 +33,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -48,7 +50,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -66,7 +69,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -82,7 +86,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -102,7 +107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -118,7 +124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -134,7 +141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -152,7 +160,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -168,7 +177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -188,7 +198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -204,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -220,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -238,7 +251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -254,7 +268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -276,7 +291,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -292,7 +308,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -308,7 +325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -326,7 +344,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -342,6 +361,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -351,7 +371,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -367,7 +388,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -388,7 +410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -410,7 +433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -426,7 +450,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -442,7 +467,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -460,7 +486,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -476,6 +503,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -485,7 +513,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -505,7 +534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -521,7 +551,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -542,7 +573,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -564,7 +596,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -580,7 +613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -596,7 +630,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -614,7 +649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -630,6 +666,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -639,7 +676,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -655,7 +693,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -676,7 +715,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -698,7 +738,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -714,7 +755,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -730,7 +772,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -748,7 +791,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -764,6 +808,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -773,7 +818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -789,7 +835,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -810,7 +857,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -831,7 +879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -884,6 +933,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -896,7 +946,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -912,7 +963,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1085,7 +1137,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1110,7 +1163,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1161,6 +1215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1173,7 +1228,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1189,7 +1245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1648,7 +1705,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1673,7 +1731,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1724,6 +1783,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1736,7 +1796,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -1752,7 +1813,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2263,7 +2325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2288,7 +2351,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2339,6 +2403,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2351,7 +2416,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2367,7 +2433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2774,7 +2841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2799,7 +2867,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2850,6 +2919,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2862,7 +2932,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2878,7 +2949,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2921,7 +2993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2946,7 +3019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -2997,6 +3071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3009,7 +3084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3025,7 +3101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3236,7 +3313,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3261,7 +3339,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3312,6 +3391,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3333,7 +3413,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3349,7 +3430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3435,7 +3517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3460,7 +3543,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3514,6 +3598,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3526,7 +3611,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3542,7 +3628,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3938,7 +4025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -3963,7 +4051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4017,6 +4106,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4029,7 +4119,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4045,7 +4136,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4409,7 +4501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4434,7 +4527,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4488,6 +4582,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4500,7 +4595,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4516,7 +4612,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4912,7 +5009,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4937,7 +5035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -4988,6 +5087,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5000,7 +5100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5016,7 +5117,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5296,7 +5398,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5321,7 +5424,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5375,6 +5479,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5387,7 +5492,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5403,7 +5509,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5660,7 +5767,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5685,7 +5793,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5736,6 +5845,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5748,7 +5858,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -5764,7 +5875,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6047,7 +6159,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6072,7 +6185,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6126,6 +6240,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6138,7 +6253,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6154,7 +6270,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6489,7 +6606,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6514,7 +6632,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6568,6 +6687,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6580,7 +6700,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6596,7 +6717,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6905,7 +7027,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6930,7 +7053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -6981,6 +7105,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6993,7 +7118,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7009,7 +7135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7237,7 +7364,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7262,7 +7390,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7316,6 +7445,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7328,7 +7458,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7344,7 +7475,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7601,7 +7733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7626,7 +7759,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7677,6 +7811,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7689,7 +7824,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7705,7 +7841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7855,7 +7992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7880,7 +8018,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7934,6 +8073,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7946,7 +8086,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -7962,7 +8103,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8297,7 +8439,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8322,7 +8465,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8376,6 +8520,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8388,7 +8533,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8404,7 +8550,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8635,7 +8782,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8660,7 +8808,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8714,6 +8863,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8726,7 +8876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8742,7 +8893,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -8999,7 +9151,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9024,7 +9177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9078,6 +9232,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9090,7 +9245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9106,7 +9262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9389,7 +9546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9414,7 +9572,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9465,6 +9624,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9477,7 +9637,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9493,7 +9654,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9831,7 +9993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9856,7 +10019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9907,6 +10071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9919,7 +10084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -9935,7 +10101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10021,7 +10188,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10046,7 +10214,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10067,7 +10236,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10122,6 +10292,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10134,7 +10305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10150,7 +10322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10175,7 +10348,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10225,6 +10399,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10237,7 +10412,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10253,7 +10429,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10278,7 +10455,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10326,6 +10504,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10338,7 +10517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10354,7 +10534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10379,7 +10560,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10441,6 +10623,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10453,7 +10636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10469,7 +10653,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10494,7 +10679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10838,7 +11024,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -10866,6 +11053,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12629,7 +12817,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -12647,7 +12836,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -12663,7 +12853,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -12688,7 +12879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -12789,7 +12981,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -12817,6 +13010,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13032,7 +13226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13050,7 +13245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13066,7 +13262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13091,7 +13288,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13124,7 +13322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13152,6 +13351,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13539,7 +13739,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13557,7 +13758,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13573,7 +13775,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -13598,7 +13801,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14033,7 +14237,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14061,6 +14266,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -14783,7 +14989,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14801,7 +15008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14817,7 +15025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14842,7 +15051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -14988,7 +15198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -15016,6 +15227,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21606,7 +21818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -21624,7 +21837,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -21640,7 +21854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -21665,7 +21880,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -21854,7 +22070,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -21882,6 +22099,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -25758,7 +25976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -25776,7 +25995,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -25792,7 +26012,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -25817,7 +26038,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -25968,7 +26190,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -25996,6 +26219,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31134,7 +31358,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31152,7 +31377,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31168,7 +31394,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31193,7 +31420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31316,7 +31544,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31344,6 +31573,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31546,7 +31776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31564,7 +31795,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31580,7 +31812,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31605,7 +31838,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31654,7 +31888,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31682,6 +31917,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31774,7 +32010,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31792,7 +32029,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31808,7 +32046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31833,7 +32072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31937,7 +32177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -31974,6 +32215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32222,7 +32464,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32240,7 +32483,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32256,7 +32500,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32277,7 +32522,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32411,7 +32657,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -32439,6 +32686,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33291,7 +33539,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33309,7 +33558,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33325,7 +33575,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33346,7 +33597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33362,7 +33614,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33395,7 +33648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33530,7 +33784,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33549,7 +33804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33574,7 +33830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33590,7 +33847,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33631,7 +33889,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33778,7 +34037,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33797,7 +34057,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33818,7 +34079,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33905,7 +34167,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33924,7 +34187,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -33947,7 +34211,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34111,7 +34376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34137,7 +34403,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34373,7 +34640,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34399,7 +34667,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34611,7 +34880,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34637,7 +34907,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34801,7 +35072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34827,7 +35099,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -34979,7 +35252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35005,7 +35279,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35145,7 +35420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35171,7 +35447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35263,7 +35540,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35289,7 +35567,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35357,7 +35636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35380,7 +35660,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35448,7 +35729,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35471,7 +35753,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35767,7 +36050,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -35790,7 +36074,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -36580,7 +36865,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -36606,7 +36892,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -37490,7 +37777,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -37516,7 +37804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -38472,7 +38761,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -38498,7 +38788,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -39322,7 +39613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -39348,7 +39640,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -39656,7 +39949,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -39682,7 +39976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -40530,7 +40825,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -40556,7 +40852,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -41548,7 +41845,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -41574,7 +41872,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42434,7 +42733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42460,7 +42760,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42482,7 +42783,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42505,7 +42807,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42527,7 +42830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42550,7 +42854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42571,7 +42876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42594,7 +42900,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42610,7 +42917,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42626,7 +42934,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42642,7 +42951,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42658,7 +42968,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42674,7 +42985,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42690,7 +43002,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42706,7 +43019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42722,7 +43036,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42738,7 +43053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42754,7 +43070,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42770,7 +43087,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42786,7 +43104,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42802,7 +43121,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42818,7 +43138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42834,7 +43155,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42850,7 +43172,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42866,7 +43189,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42882,7 +43206,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42898,7 +43223,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42914,7 +43240,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42930,7 +43257,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42946,7 +43274,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42962,7 +43291,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42978,7 +43308,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -42994,7 +43325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43010,7 +43342,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43026,7 +43359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43042,7 +43376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43058,7 +43393,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43074,7 +43410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43090,7 +43427,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43106,7 +43444,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43122,7 +43461,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43138,7 +43478,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43154,7 +43495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43170,7 +43512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43186,7 +43529,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43202,7 +43546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43218,7 +43563,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43234,7 +43580,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43250,7 +43597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43266,7 +43614,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43282,7 +43631,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43298,7 +43648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43314,7 +43665,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43330,7 +43682,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43346,7 +43699,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43362,7 +43716,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43378,7 +43733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43394,7 +43750,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43410,7 +43767,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43426,7 +43784,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43442,7 +43801,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43458,7 +43818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43474,7 +43835,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43490,7 +43852,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43506,7 +43869,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43522,7 +43886,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43538,7 +43903,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43554,7 +43920,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43570,7 +43937,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43586,7 +43954,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43602,7 +43971,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43618,7 +43988,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43634,7 +44005,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43650,7 +44022,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43666,7 +44039,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43682,7 +44056,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43698,7 +44073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43714,7 +44090,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43730,7 +44107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43746,7 +44124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43762,7 +44141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43778,7 +44158,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43794,7 +44175,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43810,7 +44192,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43826,7 +44209,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } }, { @@ -43842,1703 +44226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest" } } ] \ No newline at end of file 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 5e46b91c207a7..2dbfa3dfe8172 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 @@ -16,7 +16,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32,7 +33,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -48,7 +50,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -66,7 +69,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -82,7 +86,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -102,7 +107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -118,7 +124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -134,7 +141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -152,7 +160,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -168,7 +177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -188,7 +198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -204,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -220,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -238,7 +251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -254,7 +268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -274,7 +289,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -290,7 +306,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -306,7 +323,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -324,7 +342,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -340,7 +359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -361,7 +381,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -383,7 +404,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -399,7 +421,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -415,7 +438,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -433,7 +457,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -449,6 +474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -458,7 +484,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -474,7 +501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -495,7 +523,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -517,7 +546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -533,7 +563,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -549,7 +580,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -567,7 +599,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -583,6 +616,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -592,7 +626,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -612,7 +647,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -628,7 +664,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -649,7 +686,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -671,7 +709,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -687,7 +726,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -703,7 +743,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -721,7 +762,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -737,6 +779,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -746,7 +789,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -762,7 +806,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -783,7 +828,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -805,7 +851,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -821,7 +868,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -837,7 +885,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -855,7 +904,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -871,6 +921,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -880,7 +931,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -896,7 +948,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -917,7 +970,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -939,7 +993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -955,7 +1010,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -971,7 +1027,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -989,7 +1046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1005,6 +1063,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1014,7 +1073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1030,7 +1090,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1055,7 +1116,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1076,7 +1138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1129,6 +1192,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1141,7 +1205,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1157,7 +1222,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1330,7 +1396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1355,7 +1422,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1406,6 +1474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1418,7 +1487,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1434,7 +1504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1893,7 +1964,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1918,7 +1990,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1969,6 +2042,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1981,7 +2055,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -1997,7 +2072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -2508,7 +2584,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -2533,7 +2610,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -2584,6 +2662,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2596,7 +2675,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -2612,7 +2692,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3019,7 +3100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3044,7 +3126,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3095,6 +3178,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3107,7 +3191,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3123,7 +3208,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3166,7 +3252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3191,7 +3278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3242,6 +3330,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3254,7 +3343,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3270,7 +3360,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3481,7 +3572,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3506,7 +3598,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3557,6 +3650,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3578,7 +3672,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3594,7 +3689,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3680,7 +3776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3705,7 +3802,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3759,6 +3857,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3771,7 +3870,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -3787,7 +3887,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4183,7 +4284,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4208,7 +4310,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4262,6 +4365,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4274,7 +4378,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4290,7 +4395,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4654,7 +4760,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4679,7 +4786,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4733,6 +4841,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4745,7 +4854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -4761,7 +4871,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5157,7 +5268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5182,7 +5294,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5233,6 +5346,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5245,7 +5359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5261,7 +5376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5541,7 +5657,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5566,7 +5683,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5620,6 +5738,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5632,7 +5751,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5648,7 +5768,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5905,7 +6026,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5930,7 +6052,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -5981,6 +6104,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5993,7 +6117,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6009,7 +6134,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6292,7 +6418,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6317,7 +6444,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6371,6 +6499,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6383,7 +6512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6399,7 +6529,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6734,7 +6865,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6759,7 +6891,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6813,6 +6946,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6825,7 +6959,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -6841,7 +6976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7150,7 +7286,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7175,7 +7312,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7226,6 +7364,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7238,7 +7377,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7254,7 +7394,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7482,7 +7623,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7507,7 +7649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7561,6 +7704,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7573,7 +7717,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7589,7 +7734,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7846,7 +7992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7871,7 +8018,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7922,6 +8070,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7934,7 +8083,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -7950,7 +8100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8100,7 +8251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8125,7 +8277,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8179,6 +8332,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8191,7 +8345,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8207,7 +8362,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8542,7 +8698,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8567,7 +8724,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8621,6 +8779,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8633,7 +8792,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8649,7 +8809,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8880,7 +9041,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8905,7 +9067,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8959,6 +9122,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8971,7 +9135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -8987,7 +9152,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9244,7 +9410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9269,7 +9436,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9323,6 +9491,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9335,7 +9504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9351,7 +9521,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9634,7 +9805,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9659,7 +9831,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9710,6 +9883,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9722,7 +9896,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -9738,7 +9913,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10076,7 +10252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10101,7 +10278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10152,6 +10330,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10164,7 +10343,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10180,7 +10360,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10266,7 +10447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10291,7 +10473,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10312,7 +10495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10367,6 +10551,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10379,7 +10564,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10395,7 +10581,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10420,7 +10607,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10470,6 +10658,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10482,7 +10671,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10498,7 +10688,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10523,7 +10714,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10571,6 +10763,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10583,7 +10776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10599,7 +10793,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10624,7 +10819,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10686,6 +10882,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10698,7 +10895,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10714,7 +10912,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -10739,7 +10938,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -11083,7 +11283,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -11111,6 +11312,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12874,7 +13076,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -12892,7 +13095,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -12908,7 +13112,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -12933,7 +13138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13034,7 +13240,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13062,6 +13269,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13277,7 +13485,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13295,7 +13504,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13311,7 +13521,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13336,7 +13547,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13369,7 +13581,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13397,6 +13610,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13784,7 +13998,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13802,7 +14017,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13818,7 +14034,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -13843,7 +14060,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -14278,7 +14496,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -14306,6 +14525,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -15028,7 +15248,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -15046,7 +15267,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -15062,7 +15284,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -15087,7 +15310,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -15233,7 +15457,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -15261,6 +15486,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21851,7 +22077,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -21869,7 +22096,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -21885,7 +22113,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -21910,7 +22139,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -22099,7 +22329,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -22127,6 +22358,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -26003,7 +26235,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -26021,7 +26254,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -26037,7 +26271,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -26062,7 +26297,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -26213,7 +26449,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -26241,6 +26478,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31379,7 +31617,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31397,7 +31636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31413,7 +31653,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31438,7 +31679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31561,7 +31803,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31589,6 +31832,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31791,7 +32035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31809,7 +32054,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31825,7 +32071,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31850,7 +32097,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31899,7 +32147,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -31927,6 +32176,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32019,7 +32269,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32037,7 +32288,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32053,7 +32305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32078,7 +32331,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32182,7 +32436,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32219,6 +32474,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32467,7 +32723,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32485,7 +32742,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32501,7 +32759,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32522,7 +32781,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32656,7 +32916,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -32684,6 +32945,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33536,7 +33798,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33554,7 +33817,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33570,7 +33834,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33591,7 +33856,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33607,7 +33873,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33640,7 +33907,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33775,7 +34043,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33794,7 +34063,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33819,7 +34089,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33835,7 +34106,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -33876,7 +34148,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34023,7 +34296,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34042,7 +34316,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34063,7 +34338,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34143,7 +34419,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34162,7 +34439,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34326,7 +34604,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34352,7 +34631,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34588,7 +34868,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34614,7 +34895,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34826,7 +35108,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -34852,7 +35135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35016,7 +35300,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35042,7 +35327,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35194,7 +35480,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35220,7 +35507,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35360,7 +35648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35386,7 +35675,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35478,7 +35768,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35504,7 +35795,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35572,7 +35864,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35595,7 +35888,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35663,7 +35957,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35686,7 +35981,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -35982,7 +36278,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -36005,7 +36302,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -36795,7 +37093,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -36821,7 +37120,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -37705,7 +38005,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -37731,7 +38032,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -38687,7 +38989,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -38713,7 +39016,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -39537,7 +39841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -39563,7 +39868,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -39871,7 +40177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -39897,7 +40204,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -40745,7 +41053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -40771,7 +41080,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -41763,7 +42073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -41789,7 +42100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42649,7 +42961,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42675,7 +42988,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42697,7 +43011,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42720,7 +43035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42742,7 +43058,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42765,7 +43082,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42786,7 +43104,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42809,7 +43128,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42825,7 +43145,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42841,7 +43162,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42857,7 +43179,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42873,7 +43196,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42889,7 +43213,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42905,7 +43230,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42921,7 +43247,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42937,7 +43264,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42953,7 +43281,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42969,7 +43298,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -42985,7 +43315,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43001,7 +43332,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43017,7 +43349,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43033,7 +43366,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43049,7 +43383,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43065,7 +43400,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43081,7 +43417,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43097,7 +43434,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43113,7 +43451,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43129,7 +43468,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43145,7 +43485,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43161,7 +43502,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43177,7 +43519,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43193,7 +43536,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43209,7 +43553,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43225,7 +43570,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43241,7 +43587,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43257,7 +43604,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43273,7 +43621,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43289,7 +43638,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43305,7 +43655,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43321,7 +43672,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43337,7 +43689,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43353,7 +43706,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43369,7 +43723,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43385,7 +43740,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43401,7 +43757,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43417,7 +43774,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43433,7 +43791,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43449,7 +43808,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43465,7 +43825,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43481,7 +43842,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43497,7 +43859,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43513,7 +43876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43529,7 +43893,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43545,7 +43910,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43561,7 +43927,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43577,7 +43944,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43593,7 +43961,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43609,7 +43978,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43625,7 +43995,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43641,7 +44012,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43657,7 +44029,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43673,7 +44046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43689,7 +44063,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43705,7 +44080,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43721,7 +44097,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43737,7 +44114,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43753,7 +44131,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43769,7 +44148,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43785,7 +44165,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43801,7 +44182,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43817,7 +44199,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43833,7 +44216,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43849,7 +44233,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43865,7 +44250,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43881,7 +44267,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43897,7 +44284,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43913,7 +44301,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43929,7 +44318,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43945,7 +44335,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43961,7 +44352,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43977,7 +44369,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -43993,7 +44386,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -44009,7 +44403,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -44025,7 +44420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -44041,7 +44437,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } }, { @@ -44057,1726 +44454,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_project_hierarchy" } } ] \ No newline at end of file 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 c5417a8d212bc..f0ed6adaad7c8 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 @@ -16,7 +16,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32,7 +33,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -48,7 +50,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -66,7 +69,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -82,7 +86,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -102,7 +107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -118,7 +124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -134,7 +141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -152,7 +160,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -168,7 +177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -188,7 +198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -204,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -220,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -238,7 +251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -254,7 +268,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -276,7 +291,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -292,7 +308,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -308,7 +325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -326,7 +344,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -342,6 +361,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -351,7 +371,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -367,7 +388,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -388,7 +410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -410,7 +433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -426,7 +450,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -442,7 +467,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -460,7 +486,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -476,6 +503,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -485,7 +513,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -505,7 +534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -521,7 +551,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -542,7 +573,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -564,7 +596,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -580,7 +613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -596,7 +630,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -614,7 +649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -630,6 +666,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -639,7 +676,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -655,7 +693,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -676,7 +715,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -698,7 +738,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -714,7 +755,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -730,7 +772,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -748,7 +791,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -764,6 +808,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -773,7 +818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -789,7 +835,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -810,7 +857,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -831,7 +879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -884,6 +933,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -896,7 +946,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -912,7 +963,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1085,7 +1137,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1110,7 +1163,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1161,6 +1215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1173,7 +1228,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1189,7 +1245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1648,7 +1705,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1673,7 +1731,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1724,6 +1783,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1736,7 +1796,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -1752,7 +1813,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2263,7 +2325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2288,7 +2351,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2339,6 +2403,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2351,7 +2416,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2367,7 +2433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2774,7 +2841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2799,7 +2867,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2850,6 +2919,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2862,7 +2932,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2878,7 +2949,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2921,7 +2993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2946,7 +3019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -2997,6 +3071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3009,7 +3084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3025,7 +3101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3236,7 +3313,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3261,7 +3339,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3312,6 +3391,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3333,7 +3413,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3349,7 +3430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3435,7 +3517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3460,7 +3543,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3514,6 +3598,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3526,7 +3611,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3542,7 +3628,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3938,7 +4025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -3963,7 +4051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4017,6 +4106,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4029,7 +4119,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4045,7 +4136,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4409,7 +4501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4434,7 +4527,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4488,6 +4582,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4500,7 +4595,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4516,7 +4612,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4912,7 +5009,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4937,7 +5035,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -4988,6 +5087,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5000,7 +5100,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5016,7 +5117,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5296,7 +5398,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5321,7 +5424,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5375,6 +5479,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5387,7 +5492,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5403,7 +5509,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5660,7 +5767,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5685,7 +5793,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5736,6 +5845,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5748,7 +5858,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -5764,7 +5875,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6047,7 +6159,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6072,7 +6185,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6126,6 +6240,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6138,7 +6253,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6154,7 +6270,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6489,7 +6606,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6514,7 +6632,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6568,6 +6687,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6580,7 +6700,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6596,7 +6717,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6905,7 +7027,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6930,7 +7053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -6981,6 +7105,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6993,7 +7118,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7009,7 +7135,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7237,7 +7364,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7262,7 +7390,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7316,6 +7445,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7328,7 +7458,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7344,7 +7475,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7601,7 +7733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7626,7 +7759,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7677,6 +7811,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7689,7 +7824,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7705,7 +7841,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7855,7 +7992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7880,7 +8018,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7934,6 +8073,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7946,7 +8086,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -7962,7 +8103,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8297,7 +8439,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8322,7 +8465,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8376,6 +8520,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8388,7 +8533,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8404,7 +8550,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8635,7 +8782,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8660,7 +8808,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8714,6 +8863,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8726,7 +8876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8742,7 +8893,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -8999,7 +9151,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9024,7 +9177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9078,6 +9232,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9090,7 +9245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9106,7 +9262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9389,7 +9546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9414,7 +9572,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9465,6 +9624,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9477,7 +9637,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9493,7 +9654,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9831,7 +9993,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9856,7 +10019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9907,6 +10071,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9919,7 +10084,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -9935,7 +10101,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10021,7 +10188,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10046,7 +10214,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10067,7 +10236,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10122,6 +10292,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10134,7 +10305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10150,7 +10322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10175,7 +10348,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10225,6 +10399,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10237,7 +10412,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10253,7 +10429,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10278,7 +10455,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10326,6 +10504,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10338,7 +10517,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10354,7 +10534,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10379,7 +10560,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10441,6 +10623,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10453,7 +10636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10469,7 +10653,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10494,7 +10679,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10838,7 +11024,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -10866,6 +11053,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12629,7 +12817,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -12647,7 +12836,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -12663,7 +12853,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -12688,7 +12879,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -12789,7 +12981,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -12817,6 +13010,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13032,7 +13226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13050,7 +13245,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13066,7 +13262,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13091,7 +13288,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13124,7 +13322,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13152,6 +13351,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13539,7 +13739,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13557,7 +13758,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13573,7 +13775,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -13598,7 +13801,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14033,7 +14237,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14061,6 +14266,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -14783,7 +14989,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14801,7 +15008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14817,7 +15025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14842,7 +15051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -14988,7 +15198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -15016,6 +15227,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21606,7 +21818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -21624,7 +21837,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -21640,7 +21854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -21665,7 +21880,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -21854,7 +22070,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -21882,6 +22099,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -25758,7 +25976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -25776,7 +25995,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -25792,7 +26012,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -25817,7 +26038,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -25968,7 +26190,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -25996,6 +26219,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31134,7 +31358,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31152,7 +31377,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31168,7 +31394,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31193,7 +31420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31316,7 +31544,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31344,6 +31573,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31546,7 +31776,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31564,7 +31795,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31580,7 +31812,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31605,7 +31838,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31654,7 +31888,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31682,6 +31917,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31774,7 +32010,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31792,7 +32029,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31808,7 +32046,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31833,7 +32072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31937,7 +32177,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -31974,6 +32215,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32222,7 +32464,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32240,7 +32483,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32256,7 +32500,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32277,7 +32522,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32411,7 +32657,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -32439,6 +32686,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33291,7 +33539,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33309,7 +33558,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33325,7 +33575,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33346,7 +33597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33362,7 +33614,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33395,7 +33648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33530,7 +33784,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33549,7 +33804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33574,7 +33830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33590,7 +33847,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33631,7 +33889,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33778,7 +34037,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33797,7 +34057,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33818,7 +34079,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33905,7 +34167,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33924,7 +34187,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -33947,7 +34211,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34111,7 +34376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34137,7 +34403,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34373,7 +34640,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34399,7 +34667,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34611,7 +34880,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34637,7 +34907,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34801,7 +35072,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34827,7 +35099,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -34979,7 +35252,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35005,7 +35279,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35145,7 +35420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35171,7 +35447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35263,7 +35540,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35289,7 +35567,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35357,7 +35636,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35380,7 +35660,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35448,7 +35729,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35471,7 +35753,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35767,7 +36050,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -35790,7 +36074,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -36580,7 +36865,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -36606,7 +36892,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -37490,7 +37777,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -37516,7 +37804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -38472,7 +38761,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -38498,7 +38788,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -39322,7 +39613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -39348,7 +39640,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -39656,7 +39949,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -39682,7 +39976,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -40530,7 +40825,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -40556,7 +40852,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -41548,7 +41845,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -41574,7 +41872,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42434,7 +42733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42460,7 +42760,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42482,7 +42783,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42505,7 +42807,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42527,7 +42830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42550,7 +42854,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42571,7 +42876,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42594,7 +42900,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42610,7 +42917,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42626,7 +42934,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42642,7 +42951,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42658,7 +42968,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42674,7 +42985,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42690,7 +43002,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42706,7 +43019,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42722,7 +43036,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42738,7 +43053,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42754,7 +43070,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42770,7 +43087,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42786,7 +43104,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42802,7 +43121,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42818,7 +43138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42834,7 +43155,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42850,7 +43172,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42866,7 +43189,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42882,7 +43206,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42898,7 +43223,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42914,7 +43240,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42930,7 +43257,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42946,7 +43274,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42962,7 +43291,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42978,7 +43308,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -42994,7 +43325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43010,7 +43342,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43026,7 +43359,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43042,7 +43376,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43058,7 +43393,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43074,7 +43410,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43090,7 +43427,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43106,7 +43444,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43122,7 +43461,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43138,7 +43478,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43154,7 +43495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43170,7 +43512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43186,7 +43529,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43202,7 +43546,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43218,7 +43563,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43234,7 +43580,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43250,7 +43597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43266,7 +43614,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43282,7 +43631,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43298,7 +43648,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43314,7 +43665,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43330,7 +43682,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43346,7 +43699,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43362,7 +43716,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43378,7 +43733,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43394,7 +43750,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43410,7 +43767,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43426,7 +43784,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43442,7 +43801,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43458,7 +43818,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43474,7 +43835,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43490,7 +43852,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43506,7 +43869,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43522,7 +43886,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43538,7 +43903,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43554,7 +43920,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43570,7 +43937,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43586,7 +43954,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43602,7 +43971,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43618,7 +43988,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43634,7 +44005,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43650,7 +44022,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43666,7 +44039,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43682,7 +44056,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43698,7 +44073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43714,7 +44090,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43730,7 +44107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43746,7 +44124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43762,7 +44141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43778,7 +44158,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43794,7 +44175,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43810,7 +44192,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43826,7 +44209,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } }, { @@ -43842,1703 +44226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" - } -}, -{ - "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" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_signout_timeout" } } ] \ No newline at end of file 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 5dc8fd9522da4..d0ffedb126315 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 @@ -17,7 +17,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33,7 +34,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -50,7 +52,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -68,7 +71,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -89,7 +93,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -110,7 +115,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -126,7 +132,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -143,7 +150,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -161,7 +169,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -182,7 +191,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -205,7 +215,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -221,7 +232,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -238,7 +250,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -256,7 +269,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -272,6 +286,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -281,7 +296,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -297,7 +313,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -322,7 +339,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -345,7 +363,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -361,7 +380,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -378,7 +398,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -396,7 +417,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -412,6 +434,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -421,7 +444,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -441,7 +465,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -457,7 +482,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -482,7 +508,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -505,7 +532,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -521,7 +549,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -538,7 +567,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -556,7 +586,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -572,6 +603,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -581,7 +613,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -597,7 +630,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -622,7 +656,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -645,7 +680,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -661,7 +697,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -678,7 +715,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -696,7 +734,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -712,6 +751,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -721,7 +761,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -737,7 +778,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -762,7 +804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -783,7 +826,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -837,6 +881,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -849,7 +894,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -865,7 +911,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1038,7 +1085,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1067,7 +1115,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1119,6 +1168,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1131,7 +1181,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1147,7 +1198,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1606,7 +1658,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1635,7 +1688,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1687,6 +1741,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -1699,7 +1754,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -1715,7 +1771,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2226,7 +2283,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2255,7 +2313,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2307,6 +2366,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2319,7 +2379,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2335,7 +2396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2742,7 +2804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2771,7 +2834,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2823,6 +2887,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2835,7 +2900,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2851,7 +2917,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2894,7 +2961,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2923,7 +2991,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -2975,6 +3044,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -2987,7 +3057,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3003,7 +3074,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3214,7 +3286,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3243,7 +3316,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3295,6 +3369,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3316,7 +3391,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3332,7 +3408,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3418,7 +3495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3447,7 +3525,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3502,6 +3581,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -3514,7 +3594,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3530,7 +3611,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3926,7 +4008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -3955,7 +4038,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4010,6 +4094,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4022,7 +4107,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4038,7 +4124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4402,7 +4489,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4431,7 +4519,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4486,6 +4575,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -4498,7 +4588,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4514,7 +4605,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4910,7 +5002,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4939,7 +5032,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -4991,6 +5085,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5003,7 +5098,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5019,7 +5115,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5299,7 +5396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5328,7 +5426,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5383,6 +5482,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5395,7 +5495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5411,7 +5512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5668,7 +5770,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5697,7 +5800,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5749,6 +5853,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -5761,7 +5866,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -5777,7 +5883,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6060,7 +6167,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6089,7 +6197,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6144,6 +6253,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6156,7 +6266,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6172,7 +6283,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6507,7 +6619,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6536,7 +6649,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6591,6 +6705,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -6603,7 +6718,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6619,7 +6735,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6928,7 +7045,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -6957,7 +7075,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7009,6 +7128,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7021,7 +7141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7037,7 +7158,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7265,7 +7387,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7294,7 +7417,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7349,6 +7473,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7361,7 +7486,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7377,7 +7503,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7634,7 +7761,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7663,7 +7791,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7715,6 +7844,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7727,7 +7857,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7743,7 +7874,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7893,7 +8025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7922,7 +8055,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -7977,6 +8111,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -7989,7 +8124,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8005,7 +8141,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8340,7 +8477,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8369,7 +8507,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8424,6 +8563,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8436,7 +8576,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8452,7 +8593,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8683,7 +8825,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8712,7 +8855,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8767,6 +8911,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -8779,7 +8924,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -8795,7 +8941,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9052,7 +9199,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9081,7 +9229,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9136,6 +9285,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9148,7 +9298,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9164,7 +9315,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9447,7 +9599,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9476,7 +9629,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9528,6 +9682,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9540,7 +9695,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9556,7 +9712,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9894,7 +10051,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9923,7 +10081,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -9975,6 +10134,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -9987,7 +10147,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10003,7 +10164,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10089,7 +10251,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10118,7 +10281,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10139,7 +10303,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10195,6 +10360,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10207,7 +10373,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10223,7 +10390,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10252,7 +10420,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10303,6 +10472,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10315,7 +10485,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10331,7 +10502,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10360,7 +10532,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10409,6 +10582,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10421,7 +10595,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10437,7 +10612,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10466,7 +10642,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10529,6 +10706,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -10541,7 +10719,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10557,7 +10736,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10586,7 +10766,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10930,7 +11111,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -10959,6 +11141,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -12722,7 +12905,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -12740,7 +12924,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -12756,7 +12941,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -12785,7 +12971,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -12801,7 +12988,7 @@ "time": 0, "actor": "urn:li:corpuser:unknown" }, - "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", + "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)", "type": "TRANSFORMED" }, { @@ -12809,7 +12996,7 @@ "time": 0, "actor": "urn:li:corpuser:unknown" }, - "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)", + "dataset": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", "type": "TRANSFORMED" } ], @@ -12886,7 +13073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -12915,6 +13103,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13130,7 +13319,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13148,7 +13338,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13164,7 +13355,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13193,7 +13385,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13226,7 +13419,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13255,6 +13449,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -13642,7 +13837,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13660,7 +13856,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13676,7 +13873,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -13705,7 +13903,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -14140,7 +14339,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -14169,6 +14369,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -14891,7 +15092,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -14909,7 +15111,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -14925,7 +15128,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -14954,7 +15158,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -15100,7 +15305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -15129,6 +15335,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -21719,7 +21926,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -21737,7 +21945,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -21753,7 +21962,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -21782,7 +21992,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -21971,7 +22182,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -22000,6 +22212,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -25876,7 +26089,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -25894,7 +26108,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -25910,7 +26125,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -25939,7 +26155,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -26090,7 +26307,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -26119,6 +26337,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31257,7 +31476,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31275,7 +31495,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31291,7 +31512,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31320,7 +31542,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31443,7 +31666,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31472,6 +31696,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31674,7 +31899,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31692,7 +31918,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31708,7 +31935,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31737,7 +31965,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31786,7 +32015,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31815,6 +32045,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -31907,7 +32138,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31925,7 +32157,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31941,7 +32174,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -31970,7 +32204,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32074,7 +32309,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32112,6 +32348,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -32360,7 +32597,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32378,7 +32616,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32394,7 +32633,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32419,7 +32659,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32553,7 +32794,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -32582,6 +32824,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -33434,7 +33677,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33452,7 +33696,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33479,7 +33724,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33495,7 +33741,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33528,7 +33775,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33664,7 +33912,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33683,7 +33932,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33712,7 +33962,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33728,7 +33979,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33769,7 +34021,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33917,7 +34170,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33936,7 +34190,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -33961,7 +34216,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34049,7 +34305,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34068,7 +34325,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34098,7 +34356,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34262,7 +34521,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34295,7 +34555,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34531,7 +34792,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34564,7 +34826,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34776,7 +35039,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34809,7 +35073,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -34973,7 +35238,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35006,7 +35272,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35158,7 +35425,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35191,7 +35459,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35331,7 +35600,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35364,7 +35634,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35456,7 +35727,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35489,7 +35761,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35557,7 +35830,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35587,7 +35861,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35655,7 +35930,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35685,7 +35961,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -35981,7 +36258,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -36011,7 +36289,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -36801,7 +37080,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -36834,7 +37114,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -37718,7 +37999,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -37751,7 +38033,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -38707,7 +38990,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -38740,7 +39024,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -39564,7 +39849,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -39597,7 +39883,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -39905,7 +40192,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -39938,7 +40226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -40786,7 +41075,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -40819,7 +41109,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -41811,7 +42102,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -41844,7 +42136,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42704,7 +42997,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42737,7 +43031,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42759,7 +43054,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42789,7 +43085,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42811,7 +43108,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42841,7 +43139,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42862,7 +43161,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42892,7 +43192,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42908,7 +43209,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42924,7 +43226,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42940,7 +43243,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42956,7 +43260,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42972,7 +43277,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -42988,7 +43294,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43004,7 +43311,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43020,7 +43328,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43036,7 +43345,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43052,7 +43362,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43068,7 +43379,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43084,7 +43396,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43100,7 +43413,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43116,7 +43430,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43132,7 +43447,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43148,7 +43464,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43164,7 +43481,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43180,7 +43498,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43196,7 +43515,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43212,7 +43532,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43228,7 +43549,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43244,7 +43566,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43260,7 +43583,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43276,7 +43600,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43292,7 +43617,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43308,7 +43634,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43324,7 +43651,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43340,7 +43668,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43356,7 +43685,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43372,7 +43702,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43388,7 +43719,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43404,7 +43736,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43420,7 +43753,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43436,7 +43770,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43452,7 +43787,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43468,7 +43804,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43484,7 +43821,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43500,7 +43838,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43516,7 +43855,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43532,7 +43872,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43548,7 +43889,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43564,7 +43906,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43580,7 +43923,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43596,7 +43940,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43612,7 +43957,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43628,7 +43974,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43644,7 +43991,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43660,7 +44008,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43676,7 +44025,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43692,7 +44042,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43708,7 +44059,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43724,7 +44076,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43740,7 +44093,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43756,7 +44110,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43772,7 +44127,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43788,7 +44144,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43804,7 +44161,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43820,7 +44178,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43836,7 +44195,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43852,7 +44212,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43868,7 +44229,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43884,7 +44246,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43900,7 +44263,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43916,7 +44280,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43932,7 +44297,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43948,7 +44314,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43964,7 +44331,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43980,7 +44348,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -43996,7 +44365,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44012,7 +44382,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44028,7 +44399,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44044,7 +44416,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44060,7 +44433,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44076,7 +44450,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44092,7 +44467,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44108,7 +44484,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44124,7 +44501,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } }, { @@ -44140,2033 +44518,8 @@ "systemMetadata": { "lastObserved": 1638860400000, "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:89fbc376e636670d29a60ef2347c156f", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.38130558-4194-2e2a-3046-c0d887829cb4)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.692a2da4-2a82-32c1-f713-63b8e4325d86)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.8a6a269a-d6de-fae4-5050-513255b40ffc)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.c57a5574-db47-46df-677f-0b708dab14db)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.e604255e-0573-3951-6db7-05bee48116c1)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.373c6466-bb0c-b319-8752-632456349261)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.721c3c41-7a2b-16a8-3281-6f948a44be96)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.8385ea9a-0749-754f-7ad9-824433de2120)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.b207c2f2-b675-32e3-2663-17bb836a018b)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.c14973c2-e1c3-563a-a9c1-8a408396d22a)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.f76d3570-23b8-f74b-d85c-cc5484c2079c)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,acryl_site1.130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55", - "urn": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,acryl_site1.8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,acryl_site1.20e44c22-1ccd-301a-220c-7b6837d09a52)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,acryl_site1.39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,acryl_site1.5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5", - "urn": "urn:li:container:8533f62e6c2cd132ff69f1ff5a9ce1f5" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:c209b64f2002cc0839094edcef4b180e", - "urn": "urn:li:container:c209b64f2002cc0839094edcef4b180e" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55", - "urn": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.5449c627-7462-4ef7-b492-bda46be068e3,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55", - "urn": "urn:li:container:ba8a5ac7eb4c6e5edc9b03bf8891be55" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "Samples" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - }, - { - "id": "urn:li:container:fd3437da0a5c1a43130608562ba3f532", - "urn": "urn:li:container:fd3437da0a5c1a43130608562ba3f532" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "urn:li:container:66fa1e14620418276c85f3b552c7ec65", - "urn": "urn:li:container:66fa1e14620418276c85f3b552c7ec65" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,acryl_site1.10c6297d-0dbd-44f1-b1ba-458bea446513,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "SubProject1" - }, - { - "id": "AbcJoinWorkbook" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Email Performance by Campaign" - }, - { - "id": "Marketo" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Email Performance by Campaign" - }, - { - "id": "Marketo" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Email Performance by Campaign" - }, - { - "id": "Marketo" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Email Performance by Campaign" - }, - { - "id": "Marketo" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Email Performance by Campaign" - }, - { - "id": "Marketo" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Dvdrental Workbook" - }, - { - "id": "actor+ (dvdrental)" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Dvdrental Workbook" - }, - { - "id": "actor+ (dvdrental)" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "Samples" - }, - { - "id": "Superstore Datasource" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "Samples" - }, - { - "id": "Superstore Datasource" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "Samples" - }, - { - "id": "Superstore Datasource" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Problems" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Requests" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Requests" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Requests" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Problems" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Problems" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", - "changeType": "UPSERT", - "aspectName": "browsePathsV2", - "aspect": { - "json": { - "path": [ - { - "id": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Incidents" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Executive Dashboard" - }, - { - "id": "Incidents" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Customer Payment Query" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "Customer Payment Query" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" - } -}, -{ - "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": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)", - "urn": "urn:li:dataPlatformInstance:(urn:li:dataPlatform:tableau,acryl_site1)" - }, - { - "id": "acryl_site1" - }, - { - "id": "default" - }, - { - "id": "test publish datasource" - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "lastRunId": "no-run-id-provided" + "lastRunId": "no-run-id-provided", + "pipelineName": "test_tableau_ingest_with_platform_instance" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py b/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py index 57fcb0b6ee49a..a8c961ad6c952 100644 --- a/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py +++ b/metadata-ingestion/tests/integration/tableau/test_tableau_ingest.py @@ -375,7 +375,7 @@ def test_project_pattern(pytestconfig, tmp_path, mock_datahub_graph): output_file_name, mock_datahub_graph, pipeline_config=new_config, - pipeline_name="test_project_pattern", + pipeline_name="test_tableau_ingest", ) @@ -676,6 +676,7 @@ def test_tableau_stateful(pytestconfig, tmp_path, mock_time, mock_datahub_graph) golden_file_name, output_file_name, mock_datahub_graph, + pipeline_name="test_tableau_ingest", ) checkpoint1 = get_current_checkpoint_from_pipeline(pipeline_run1) @@ -689,6 +690,7 @@ def test_tableau_stateful(pytestconfig, tmp_path, mock_time, mock_datahub_graph) golden_file_deleted_name, output_file_deleted_name, mock_datahub_graph, + pipeline_name="test_tableau_ingest", ) checkpoint2 = get_current_checkpoint_from_pipeline(pipeline_run2) diff --git a/metadata-ingestion/tests/test_helpers/graph_helpers.py b/metadata-ingestion/tests/test_helpers/graph_helpers.py index 2e73f5e2c6cdb..0c642ad25a380 100644 --- a/metadata-ingestion/tests/test_helpers/graph_helpers.py +++ b/metadata-ingestion/tests/test_helpers/graph_helpers.py @@ -42,7 +42,7 @@ def import_file(self, file: Path) -> None: ) for wu in file_source.get_workunits(): if isinstance(wu, MetadataWorkUnit): - metadata = wu.get_metadata().get("metadata") + metadata = wu.metadata mcps: Iterable[ Union[ MetadataChangeProposal, diff --git a/metadata-ingestion/tests/unit/glue/glue_deleted_actor_mces_golden.json b/metadata-ingestion/tests/unit/glue/glue_deleted_actor_mces_golden.json index 51d5a6974eb0d..49c24d87105bb 100644 --- a/metadata-ingestion/tests/unit/glue/glue_deleted_actor_mces_golden.json +++ b/metadata-ingestion/tests/unit/glue/glue_deleted_actor_mces_golden.json @@ -17,7 +17,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -32,7 +34,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -47,7 +51,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -64,7 +70,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -79,7 +87,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -220,6 +230,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -231,7 +242,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -248,7 +261,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -263,7 +278,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -283,7 +300,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -425,6 +444,7 @@ "type": "DATAOWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" @@ -436,7 +456,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -453,7 +475,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -468,7 +492,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -488,7 +514,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -503,7 +531,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } }, { @@ -518,7 +548,9 @@ }, "systemMetadata": { "lastObserved": 1586847600000, - "runId": "glue-2020_04_14-07_00_00" + "runId": "glue-2020_04_14-07_00_00", + "lastRunId": "no-run-id-provided", + "pipelineName": "statefulpipeline" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/unit/test_bigquery_source.py b/metadata-ingestion/tests/unit/test_bigquery_source.py index ebdd59b9f0f08..b58f35c0deef5 100644 --- a/metadata-ingestion/tests/unit/test_bigquery_source.py +++ b/metadata-ingestion/tests/unit/test_bigquery_source.py @@ -235,10 +235,10 @@ def test_get_dataplatform_instance_aspect_returns_project_id(get_bq_client_mock) data_platform_instance = source.get_dataplatform_instance_aspect( "urn:li:test", project_id ) - metadata = data_platform_instance.get_metadata()["metadata"] + metadata = data_platform_instance.metadata - assert data_platform_instance is not None - assert metadata.aspectName == "dataPlatformInstance" + assert isinstance(metadata, MetadataChangeProposalWrapper) + assert isinstance(metadata.aspect, DataPlatformInstanceClass) assert metadata.aspect.instance == expected_instance @@ -250,10 +250,10 @@ def test_get_dataplatform_instance_default_no_instance(get_bq_client_mock): data_platform_instance = source.get_dataplatform_instance_aspect( "urn:li:test", "project_id" ) - metadata = data_platform_instance.get_metadata()["metadata"] + metadata = data_platform_instance.metadata - assert data_platform_instance is not None - assert metadata.aspectName == "dataPlatformInstance" + assert isinstance(metadata, MetadataChangeProposalWrapper) + assert isinstance(metadata.aspect, DataPlatformInstanceClass) assert metadata.aspect.instance is None diff --git a/metadata-ingestion/tests/unit/test_mlflow_source.py b/metadata-ingestion/tests/unit/test_mlflow_source.py index 374816055b216..ae5a42bad229d 100644 --- a/metadata-ingestion/tests/unit/test_mlflow_source.py +++ b/metadata-ingestion/tests/unit/test_mlflow_source.py @@ -72,7 +72,7 @@ def test_stages(source): None, } workunits = source._get_tags_workunits() - names = [wu.get_metadata()["metadata"].aspect.name for wu in workunits] + names = [wu.metadata.aspect.name for wu in workunits] assert len(names) == len(mlflow_registered_model_stages) assert set(names) == { @@ -100,7 +100,7 @@ def test_model_without_run(source, registered_model, model_version): model_version=model_version, run=run, ) - aspect = wu.get_metadata()["metadata"].aspect + aspect = wu.metadata.aspect assert aspect.hyperParams is None assert aspect.trainingMetrics is None diff --git a/metadata-ingestion/tests/unit/test_usage_common.py b/metadata-ingestion/tests/unit/test_usage_common.py index 1e2b2b6999177..e01f0ea77df83 100644 --- a/metadata-ingestion/tests/unit/test_usage_common.py +++ b/metadata-ingestion/tests/unit/test_usage_common.py @@ -190,8 +190,9 @@ def test_make_usage_workunit(): assert ( wu.id == f"{_simple_urn_builder(resource)}-{USAGE_ASPECT_NAME}-{ts_timestamp}" ) - assert isinstance(wu.get_metadata()["metadata"], MetadataChangeProposalWrapper) - du: DatasetUsageStatisticsClass = wu.get_metadata()["metadata"].aspect + assert isinstance(wu.metadata, MetadataChangeProposalWrapper) + assert isinstance(wu.metadata.aspect, DatasetUsageStatisticsClass) + du: DatasetUsageStatisticsClass = wu.metadata.aspect assert du.totalSqlQueries == 1 assert du.topSqlQueries assert du.topSqlQueries.pop() == test_query @@ -225,8 +226,9 @@ def test_query_formatting(): assert ( wu.id == f"{_simple_urn_builder(resource)}-{USAGE_ASPECT_NAME}-{ts_timestamp}" ) - assert isinstance(wu.get_metadata()["metadata"], MetadataChangeProposalWrapper) - du: DatasetUsageStatisticsClass = wu.get_metadata()["metadata"].aspect + assert isinstance(wu.metadata, MetadataChangeProposalWrapper) + assert isinstance(wu.metadata.aspect, DatasetUsageStatisticsClass) + du: DatasetUsageStatisticsClass = wu.metadata.aspect assert du.totalSqlQueries == 1 assert du.topSqlQueries assert du.topSqlQueries.pop() == formatted_test_query @@ -260,8 +262,9 @@ def test_query_trimming(): assert ( wu.id == f"{_simple_urn_builder(resource)}-{USAGE_ASPECT_NAME}-{ts_timestamp}" ) - assert isinstance(wu.get_metadata()["metadata"], MetadataChangeProposalWrapper) - du: DatasetUsageStatisticsClass = wu.get_metadata()["metadata"].aspect + assert isinstance(wu.metadata, MetadataChangeProposalWrapper) + assert isinstance(wu.metadata.aspect, DatasetUsageStatisticsClass) + du: DatasetUsageStatisticsClass = wu.metadata.aspect assert du.totalSqlQueries == 1 assert du.topSqlQueries assert du.topSqlQueries.pop() == "select * from te ..." @@ -299,8 +302,9 @@ def test_make_usage_workunit_include_top_n_queries(): assert ( wu.id == f"{_simple_urn_builder(resource)}-{USAGE_ASPECT_NAME}-{ts_timestamp}" ) - assert isinstance(wu.get_metadata()["metadata"], MetadataChangeProposalWrapper) - du: DatasetUsageStatisticsClass = wu.get_metadata()["metadata"].aspect + assert isinstance(wu.metadata, MetadataChangeProposalWrapper) + assert isinstance(wu.metadata.aspect, DatasetUsageStatisticsClass) + du: DatasetUsageStatisticsClass = wu.metadata.aspect assert du.totalSqlQueries == 1 assert du.topSqlQueries is None