From 877381660bd0bcb887229f76bf9152114a2b2c81 Mon Sep 17 00:00:00 2001 From: mayurinehate Date: Mon, 29 Aug 2022 16:33:12 +0530 Subject: [PATCH] feat(tableau): add platform_instance_map, lineage_overrides in tableau source --- .../src/datahub/ingestion/source/tableau.py | 18 +- .../ingestion/source/tableau_common.py | 83 +- .../tableau/tableau_mces_golden.json | 26409 +++------------- .../tests/integration/tableau/test_tableau.py | 55 + 4 files changed, 3897 insertions(+), 22668 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau.py index e6e261a8fdd465..fb3c45c6b067fd 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau.py @@ -15,7 +15,8 @@ ) import datahub.emitter.mce_builder as builder -from datahub.configuration.common import ConfigModel, ConfigurationError +from datahub.configuration.common import ConfigurationError +from datahub.configuration.source_common import DatasetLineageProviderConfigBase from datahub.emitter.mcp import MetadataChangeProposalWrapper from datahub.emitter.mcp_builder import ( PlatformKey, @@ -36,6 +37,7 @@ from datahub.ingestion.source.tableau_common import ( FIELD_TYPE_MAPPING, MetadataQueryException, + TableauLineageOverrides, clean_query, custom_sql_graphql_query, get_field_value_in_sheet, @@ -89,7 +91,7 @@ REPLACE_SLASH_CHAR = "|" -class TableauConfig(ConfigModel): +class TableauConfig(DatasetLineageProviderConfigBase): connect_uri: str = Field(description="Tableau host URL.") username: Optional[str] = Field( default=None, @@ -147,6 +149,11 @@ class TableauConfig(ConfigModel): description="Environment to use in namespace when constructing URNs.", ) + lineage_overrides: Optional[TableauLineageOverrides] = Field( + default=None, + description="Mappings to change generated dataset urns. Use only if you really know what you are doing.", + ) + @validator("connect_uri") def remove_trailing_slash(cls, v): return config_clean.remove_trailing_slashes(v) @@ -419,12 +426,15 @@ def _create_upstream_table_lineage( f"Omitting schema for upstream table {table['id']}, schema included in table name" ) schema = "" + table_urn = make_table_urn( self.config.env, upstream_db, table.get("connectionType", ""), schema, table_name, + self.config.platform_instance_map, + self.config.lineage_overrides, ) upstream_table = UpstreamClass( @@ -447,7 +457,7 @@ def _create_upstream_table_lineage( return upstream_tables def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: - count_on_query = len(self.custom_sql_ids_being_used) + count_on_query = self.config.page_size custom_sql_filter = f"idWithin: {json.dumps(self.custom_sql_ids_being_used)}" custom_sql_connection, total_count, has_next_page = self.get_connection_object( custom_sql_graphql_query, "customSQLTablesConnection", custom_sql_filter @@ -823,7 +833,7 @@ def emit_datasource( ) def emit_published_datasources(self) -> Iterable[MetadataWorkUnit]: - count_on_query = len(self.datasource_ids_being_used) + count_on_query = self.config.page_size datasource_filter = f"idWithin: {json.dumps(self.datasource_ids_being_used)}" ( published_datasource_conn, diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py index 6296af05d14616..1b64b8a968d10f 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py @@ -1,8 +1,11 @@ import html from functools import lru_cache -from typing import List +from typing import Dict, List, Optional + +from pydantic.fields import Field import datahub.emitter.mce_builder as builder +from datahub.configuration.common import ConfigModel from datahub.metadata.com.linkedin.pegasus2avro.schema import ( ArrayTypeClass, BooleanTypeClass, @@ -19,6 +22,13 @@ ) +class TableauLineageOverrides(ConfigModel): + platform_override_map: Optional[Dict[str, str]] = Field( + default=None, + description="A holder for platform -> platform mappings to generate correct dataset urns", + ) + + class MetadataQueryException(Exception): pass @@ -384,16 +394,13 @@ def get_tags_from_params(params: List[str] = []) -> GlobalTagsClass: return GlobalTagsClass(tags=tags) -@lru_cache(maxsize=None) -def make_table_urn( - env: str, upstream_db: str, connection_type: str, schema: str, full_name: str -) -> str: +@lru_cache +def get_platform(connection_type: str) -> str: # connection_type taken from # https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_connectiontype.htm # datahub platform mapping is found here # https://github.com/datahub-project/datahub/blob/master/metadata-service/war/src/main/resources/boot/data_platforms.json - final_name = full_name.replace("[", "").replace("]", "") if connection_type in ("textscan", "textclean", "excel-direct", "excel", "csv"): platform = "external" elif connection_type in ( @@ -414,11 +421,23 @@ def make_table_urn( platform = "mssql" elif connection_type in ("athena"): platform = "athena" - upstream_db = "" else: platform = connection_type + return platform + +@lru_cache +def get_fully_qualified_table_name( + platform: str, + upstream_db: str, + schema: str, + full_name: str, +) -> str: + if platform == "athena": + upstream_db = "" database_name = f"{upstream_db}." if upstream_db else "" + final_name = full_name.replace("[", "").replace("]", "") + schema_name = f"{schema}." if schema else "" fully_qualified_table_name = f"{database_name}{schema_name}{final_name}" @@ -430,10 +449,54 @@ def make_table_urn( fully_qualified_table_name = ( fully_qualified_table_name.replace('\\"', "").replace('"', "").replace("\\", "") ) - # if there are more than 3 tokens, just take the final 3 - fully_qualified_table_name = ".".join(fully_qualified_table_name.split(".")[-3:]) - return builder.make_dataset_urn(platform, fully_qualified_table_name, env) + if platform in ("athena", "hive", "mysql"): + # it two tier database system (athena, hive, mysql), just take final 2 + fully_qualified_table_name = ".".join( + fully_qualified_table_name.split(".")[-2:] + ) + else: + # if there are more than 3 tokens, just take the final 3 + fully_qualified_table_name = ".".join( + fully_qualified_table_name.split(".")[-3:] + ) + + return fully_qualified_table_name + + +def get_platform_instance( + platform: str, platform_instance_map: Optional[Dict[str, str]] +) -> Optional[str]: + if platform_instance_map is not None and platform in platform_instance_map.keys(): + return platform_instance_map[platform] + + return None + + +def make_table_urn( + env: str, + upstream_db: Optional[str], + connection_type: str, + schema: str, + full_name: str, + platform_instance_map: Optional[Dict[str, str]], + lineage_overrides: Optional[TableauLineageOverrides] = None, +) -> str: + original_platform = platform = get_platform(connection_type) + if ( + lineage_overrides is not None + and lineage_overrides.platform_override_map is not None + and original_platform in lineage_overrides.platform_override_map.keys() + ): + platform = lineage_overrides.platform_override_map[original_platform] + + table_name = get_fully_qualified_table_name( + original_platform, upstream_db, schema, full_name + ) + platform_instance = get_platform_instance(original_platform, platform_instance_map) + return builder.make_dataset_urn_with_platform_instance( + platform, table_name, platform_instance, env + ) def make_description_from_params(description, formula): diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json index db69d5cbdc365e..528ee301302c90 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json @@ -1,9 +1,7 @@ [ { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -12,17 +10,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -31,17 +24,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50,17 +38,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -69,14 +52,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", @@ -97,25 +76,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -130,34 +102,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -166,14 +130,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", @@ -205,25 +165,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -238,34 +191,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -274,14 +219,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", @@ -315,25 +256,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -348,34 +282,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -384,14 +310,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", @@ -421,25 +343,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -454,34 +369,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -490,14 +397,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", @@ -505,7 +408,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Email Performance by Campaign", "description": "", "charts": [ @@ -518,19 +420,14 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign" } }, { @@ -545,34 +442,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -581,17 +470,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -600,14 +484,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", @@ -624,14 +504,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -644,11 +522,7 @@ "extractLastUpdateTime": "2018-02-09T00:05:25Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Marketo", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -659,17 +533,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -679,7 +548,6 @@ "fields": [ { "fieldPath": "Delivery Rate", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Delivered Email]/[Sent Email])", "type": { @@ -692,23 +560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Program ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -721,23 +583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Platform (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -750,27 +606,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated At", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -783,23 +632,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workspace Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -812,23 +655,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -841,23 +678,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -870,23 +701,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -899,23 +724,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -928,23 +747,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User Agent (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -957,23 +770,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -986,23 +793,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1015,23 +816,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1044,23 +839,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1073,23 +862,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1102,23 +885,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1131,23 +908,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1160,23 +931,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1189,23 +954,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1218,23 +977,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1247,23 +1000,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1276,23 +1023,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Clickthrough Rate", - "jsonPath": null, "nullable": false, "description": "formula: [Clickthrough Emails]/[Delivered Email]", "type": { @@ -1305,23 +1046,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Open Rate", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Opened Email]/[Delivered Email])", "type": { @@ -1334,23 +1069,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1363,23 +1092,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sent Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id])", "type": { @@ -1392,23 +1115,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivered Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Email Delivered)])", "type": { @@ -1421,23 +1138,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1450,23 +1161,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1479,23 +1184,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Mobile Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1508,23 +1207,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Platform", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1537,27 +1230,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1570,23 +1256,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1599,23 +1279,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1628,23 +1302,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1657,23 +1325,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1686,23 +1348,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1715,23 +1371,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1744,23 +1394,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1773,23 +1417,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1802,23 +1440,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created At", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1831,23 +1463,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Clickthrough Emails", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Click Email)])", "type": { @@ -1860,23 +1486,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Mobile Device (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1889,23 +1509,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1918,23 +1532,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1947,27 +1555,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1980,23 +1581,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2009,23 +1604,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2038,23 +1627,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2067,23 +1650,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Click-to-Open", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", "type": { @@ -2096,23 +1673,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Open Email)])", "type": { @@ -2125,23 +1696,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2154,27 +1719,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2187,23 +1745,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2216,23 +1768,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Non Clicked Emails", - "jsonPath": null, "nullable": false, "description": "formula: [Opened Email]-[Clickthrough Emails]", "type": { @@ -2245,23 +1791,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2274,23 +1814,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2303,23 +1837,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Non Clickthrough Email", - "jsonPath": null, "nullable": false, "description": "formula: [Delivered Email]-[Clickthrough Emails]", "type": { @@ -2332,23 +1860,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2361,27 +1883,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2394,23 +1909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2423,23 +1932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Program Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2452,23 +1955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2481,23 +1978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2510,23 +2001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2539,23 +2024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2568,23 +2047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Non Opened Email", - "jsonPath": null, "nullable": false, "description": "formula: [Delivered Email]-[Opened Email]", "type": { @@ -2597,23 +2070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2626,23 +2093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2655,23 +2116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User Agent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2684,23 +2139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2713,23 +2162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2742,23 +2185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Bounceback", - "jsonPath": null, "nullable": false, "description": "formula: [Sent Email] - [Delivered Email]", "type": { @@ -2771,23 +2208,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2800,23 +2231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2829,43 +2254,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -2874,17 +2285,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -2893,17 +2299,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -2912,17 +2313,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -2931,17 +2327,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -2950,17 +2341,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -2969,14 +2355,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", @@ -2992,25 +2374,18 @@ "lastModified": { "created": { "time": 1639772911000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3025,34 +2400,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3061,14 +2428,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", @@ -3090,25 +2453,18 @@ "lastModified": { "created": { "time": 1639773415000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3123,34 +2479,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3159,14 +2507,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", @@ -3184,25 +2528,18 @@ "lastModified": { "created": { "time": 1640375456000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3217,14 +2554,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3232,8 +2567,7 @@ "com.linkedin.pegasus2avro.common.GlobalTags": { "tags": [ { - "tag": "urn:li:tag:TAGSHEET3", - "context": null + "tag": "urn:li:tag:TAGSHEET3" } ] } @@ -3241,20 +2575,14 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3263,14 +2591,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", @@ -3278,7 +2602,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -3288,19 +2611,14 @@ "lastModified": { "created": { "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard" } }, { @@ -3315,34 +2633,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3351,14 +2661,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", @@ -3366,7 +2672,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Story 1", "description": "", "charts": [], @@ -3374,19 +2679,14 @@ "lastModified": { "created": { "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1" } }, { @@ -3401,34 +2701,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3437,14 +2729,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", @@ -3461,14 +2749,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3481,11 +2767,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Customer Payment Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -3496,17 +2778,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -3516,7 +2793,6 @@ "fields": [ { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3529,27 +2805,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3562,34 +2831,25 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Custom SQL Query", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -3597,23 +2857,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3626,23 +2880,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3655,27 +2903,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rental_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3688,27 +2929,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3721,43 +2955,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -3766,17 +2986,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3785,33 +3000,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.address,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.actor,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", @@ -3828,14 +3034,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3848,11 +3052,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "actor+ (dvdrental)", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -3863,17 +3063,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -3883,7 +3078,6 @@ "fields": [ { "fieldPath": "Address2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3896,23 +3090,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3925,30 +3113,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -3956,23 +3136,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "District", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3985,23 +3159,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4014,23 +3182,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4043,23 +3205,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4072,23 +3228,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "country, city", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4101,19 +3251,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Phone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4126,23 +3271,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Update (Address)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4155,23 +3294,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Address Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4184,23 +3317,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Actor Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4213,30 +3340,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "actor", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -4244,23 +3363,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4273,23 +3386,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4302,47 +3409,32 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -4351,17 +3443,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -4370,17 +3457,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -4389,14 +3471,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", @@ -4413,14 +3491,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -4433,11 +3509,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Superstore Datasource", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -4448,17 +3520,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -4468,7 +3535,6 @@ "fields": [ { "fieldPath": "Region (People)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4481,19 +3547,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4506,19 +3567,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4531,19 +3587,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4556,19 +3607,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sub-Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4581,19 +3627,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Row ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4606,19 +3647,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4631,19 +3667,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4656,19 +3687,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Mode", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4681,19 +3707,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "People", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4706,19 +3727,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID (Returns)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4731,19 +3747,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4756,19 +3767,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sales", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4781,19 +3787,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4806,19 +3807,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4831,19 +3827,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4856,19 +3847,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Orders", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4881,19 +3867,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit Ratio", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4906,19 +3887,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returns", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4931,19 +3907,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4956,19 +3927,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4981,19 +3947,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5006,19 +3967,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5031,19 +3987,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Regional Manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5056,19 +4007,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5081,19 +4027,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit (bin)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5106,19 +4047,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Segment", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5131,19 +4067,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Top Customers by Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5156,19 +4087,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Country/Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5181,19 +4107,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5206,19 +4127,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5231,19 +4147,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5256,19 +4167,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5281,19 +4187,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5306,39 +4207,26 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -5347,17 +4235,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5366,235 +4249,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/campaignsTable" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "programName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "programId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "workspaceName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "updatedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -5603,17 +4263,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -5622,17 +4277,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -5641,17 +4291,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -5660,14 +4305,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", @@ -5693,17 +4334,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -5711,10 +4348,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5729,34 +4363,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5765,14 +4391,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", @@ -5797,17 +4419,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -5815,10 +4433,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5833,34 +4448,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5869,14 +4476,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", @@ -5902,17 +4505,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -5920,10 +4519,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5938,34 +4534,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5974,14 +4562,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", @@ -6006,25 +4590,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6039,34 +4616,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6075,14 +4644,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", @@ -6103,17 +4668,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6121,10 +4682,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6139,34 +4697,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6175,14 +4725,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", @@ -6207,25 +4753,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6240,34 +4779,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6276,14 +4807,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", @@ -6307,17 +4834,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6325,10 +4848,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6343,34 +4863,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6379,14 +4891,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", @@ -6409,17 +4917,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -6427,10 +4931,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6445,34 +4946,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6481,14 +4974,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", @@ -6511,25 +5000,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6544,34 +5026,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6580,14 +5054,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", @@ -6608,17 +5078,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -6626,10 +5092,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6644,34 +5107,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6680,14 +5135,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", @@ -6707,25 +5158,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6740,34 +5184,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6776,14 +5212,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", @@ -6807,17 +5239,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6825,10 +5253,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6843,34 +5268,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6879,14 +5296,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", @@ -6906,17 +5319,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6924,10 +5333,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6942,34 +5348,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6978,14 +5376,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", @@ -7005,17 +5399,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -7023,10 +5413,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7041,34 +5428,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7077,14 +5456,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", @@ -7106,17 +5481,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -7124,10 +5495,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7142,34 +5510,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7178,14 +5538,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", @@ -7212,25 +5568,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7245,34 +5594,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7281,14 +5622,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", @@ -7296,7 +5633,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Executive Dashboard", "description": "", "charts": [ @@ -7318,19 +5654,14 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard" } }, { @@ -7345,34 +5676,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7381,17 +5704,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -7400,14 +5718,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", @@ -7424,14 +5738,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -7444,11 +5756,7 @@ "extractLastUpdateTime": "2018-01-18T19:35:39Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Requests", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -7459,17 +5767,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -7479,7 +5782,6 @@ "fields": [ { "fieldPath": "Closed by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7492,23 +5794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7521,23 +5817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7550,23 +5840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mobile Picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7579,23 +5863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7608,23 +5886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% made SLA", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", "type": { @@ -7637,23 +5909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Meta", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7666,23 +5932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7695,23 +5955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7724,23 +5978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7753,23 +6001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7782,23 +6024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7811,23 +6047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7840,23 +6070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7869,23 +6093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7898,23 +6116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7927,23 +6139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7956,23 +6162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7985,23 +6185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total # Request", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", "type": { @@ -8014,27 +6208,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requested for date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8047,23 +6234,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8076,23 +6257,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ordered item link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8105,23 +6280,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible elsewhere", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8134,23 +6303,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8163,23 +6326,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8192,23 +6349,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price Frequency (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8221,23 +6372,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8250,23 +6395,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8279,23 +6418,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8308,23 +6441,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Update name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8337,23 +6464,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Special instructions", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8366,23 +6487,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Execution Plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8395,23 +6510,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible on Bundles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8424,23 +6533,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8453,23 +6556,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No search", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8482,23 +6579,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8511,23 +6602,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8540,23 +6625,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8569,23 +6648,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "List Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8598,23 +6671,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8627,23 +6694,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8656,23 +6717,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8685,23 +6740,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8714,23 +6763,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8743,23 +6786,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8772,23 +6809,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8801,23 +6832,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8830,23 +6855,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8859,23 +6878,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8888,23 +6901,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8917,23 +6924,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8946,23 +6947,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Package", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8975,23 +6970,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9004,23 +6993,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9033,23 +7016,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9062,23 +7039,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9091,23 +7062,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9120,23 +7085,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9149,23 +7108,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9178,23 +7131,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Estimated Delivery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9207,23 +7154,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9236,23 +7177,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9265,23 +7200,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9294,23 +7223,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9323,23 +7246,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9352,23 +7269,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price Frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9381,23 +7292,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9410,23 +7315,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fulfillment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9439,23 +7338,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9468,23 +7361,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9497,23 +7384,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9526,23 +7407,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9555,23 +7430,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9584,23 +7453,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9613,23 +7476,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Backordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9642,23 +7499,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9671,23 +7522,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ignore price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9700,23 +7545,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9729,23 +7568,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9758,23 +7591,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9787,23 +7614,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9816,27 +7637,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9849,23 +7663,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9878,23 +7686,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9907,23 +7709,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9936,23 +7732,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9965,23 +7755,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9994,23 +7778,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", "type": { @@ -10023,23 +7801,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10052,23 +7824,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10081,23 +7847,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10110,23 +7870,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10139,23 +7893,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10168,23 +7916,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10197,23 +7939,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10226,23 +7962,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Replace on upgrade", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10255,23 +7985,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10284,23 +8008,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10313,23 +8031,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Context", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10342,23 +8054,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10371,23 +8077,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10400,23 +8100,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10429,23 +8123,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requested for", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10458,23 +8146,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10487,23 +8169,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10516,23 +8192,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Billable (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10545,23 +8215,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10574,23 +8238,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10603,23 +8261,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10632,23 +8284,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10661,23 +8307,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10690,23 +8330,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10719,23 +8353,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mobile Picture Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10748,23 +8376,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10777,23 +8399,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10806,23 +8422,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10835,23 +8445,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Protection policy", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10864,23 +8468,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10893,23 +8491,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10922,23 +8514,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Omit price in cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10951,23 +8537,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Catalogs", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10980,23 +8560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11009,23 +8583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11038,23 +8606,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11067,23 +8629,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11096,23 +8652,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Entitlement script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11125,23 +8675,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11154,23 +8698,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11183,23 +8721,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11212,23 +8744,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Published version", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11241,23 +8767,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Preview link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11270,23 +8790,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11299,23 +8813,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11328,23 +8836,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11357,23 +8859,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11386,23 +8882,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11415,23 +8905,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11444,23 +8928,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11473,23 +8951,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Stage (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11502,23 +8974,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible on Guides", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11531,23 +8997,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11560,23 +9020,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Requested Item) 1", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11589,23 +9043,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11618,23 +9066,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11647,23 +9089,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11676,23 +9112,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11705,23 +9135,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11734,23 +9158,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11763,23 +9181,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11792,23 +9204,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11821,23 +9227,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11850,23 +9250,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11879,23 +9273,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11908,23 +9296,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11937,23 +9319,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11966,23 +9342,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11995,23 +9365,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12024,23 +9388,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12053,23 +9411,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12082,23 +9434,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12111,23 +9457,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12140,23 +9480,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12169,23 +9503,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12198,23 +9526,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12227,23 +9549,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -12256,27 +9572,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12289,23 +9598,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12318,23 +9621,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12347,23 +9644,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12376,23 +9667,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12405,23 +9690,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolve Time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12434,23 +9713,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12463,23 +9736,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -12492,23 +9759,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12521,23 +9782,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12550,23 +9805,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12579,23 +9828,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12608,23 +9851,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12637,23 +9874,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12666,23 +9897,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12695,23 +9920,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12724,23 +9943,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12753,23 +9966,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12782,23 +9989,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12811,23 +10012,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12840,23 +10035,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Icon", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12869,23 +10058,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12898,23 +10081,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Display name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12927,23 +10104,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12956,23 +10127,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12985,23 +10150,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13014,23 +10173,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13043,23 +10196,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13072,23 +10219,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13101,23 +10242,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -13130,23 +10265,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13159,23 +10288,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13188,23 +10311,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13217,23 +10334,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13246,23 +10357,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13275,23 +10380,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No proceed checkout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13304,23 +10403,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13333,23 +10426,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13362,23 +10449,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13391,23 +10472,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13420,23 +10495,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13449,23 +10518,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13478,23 +10541,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13507,23 +10564,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13536,23 +10587,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Use cart layout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13565,23 +10610,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No order now", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13594,23 +10633,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13623,23 +10656,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Application", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13652,23 +10679,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13681,23 +10702,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13710,23 +10725,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13739,23 +10748,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13768,23 +10771,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Template", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13797,23 +10794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13826,23 +10817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Catalog", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13855,23 +10840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Image", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13884,23 +10863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13913,23 +10886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13942,23 +10909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13971,23 +10932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14000,23 +10955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14029,23 +10978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14058,23 +11001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14087,23 +11024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -14116,23 +11047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workflow", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14145,23 +11070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14174,23 +11093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Class", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14203,23 +11116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created from item design", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14232,23 +11139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14261,23 +11162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14290,23 +11185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14319,30 +11208,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -14350,23 +11231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14379,23 +11254,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14408,23 +11277,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14437,23 +11300,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14466,23 +11323,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14495,23 +11346,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14524,23 +11369,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14553,23 +11392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Hide price (mobile listings)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14582,23 +11415,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14611,23 +11438,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14640,23 +11461,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14669,23 +11484,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14698,23 +11507,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Availability", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14727,23 +11530,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14756,23 +11553,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14785,23 +11576,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14814,23 +11599,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14843,23 +11622,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14872,23 +11645,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14901,23 +11668,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14930,23 +11691,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14959,23 +11714,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14988,23 +11737,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15017,23 +11760,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15046,23 +11783,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15075,23 +11806,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15104,23 +11829,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15133,23 +11852,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15162,23 +11875,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15191,23 +11898,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15220,23 +11921,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15249,23 +11944,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Requests", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -15278,27 +11967,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15311,23 +11993,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Start closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15340,23 +12016,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15369,23 +12039,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15398,23 +12062,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15427,23 +12085,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15456,23 +12108,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Request state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15485,23 +12131,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15514,23 +12154,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15543,23 +12177,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15572,23 +12200,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15601,23 +12223,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15630,23 +12246,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15659,23 +12269,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15688,23 +12292,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15717,43 +12315,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -15762,17 +12346,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -15781,17 +12360,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -15800,14 +12374,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", @@ -15824,14 +12394,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -15844,11 +12412,7 @@ "extractLastUpdateTime": "2018-01-18T20:21:33Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Problems", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -15859,17 +12423,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -15879,7 +12438,6 @@ "fields": [ { "fieldPath": "SLA due (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15892,23 +12450,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15921,23 +12473,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15950,23 +12496,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15979,23 +12519,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16008,23 +12542,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16037,23 +12565,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16066,23 +12588,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16095,23 +12611,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16124,23 +12634,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16153,23 +12657,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16182,23 +12680,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16211,23 +12703,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Default assignee", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16240,23 +12726,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16269,23 +12749,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workaround", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16298,23 +12772,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", "type": { @@ -16327,23 +12795,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16356,23 +12818,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16385,23 +12841,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16414,23 +12864,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16443,23 +12887,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16472,23 +12910,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16501,23 +12933,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16530,23 +12956,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16559,23 +12979,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16588,23 +13002,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16617,23 +13025,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16646,30 +13048,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -16677,23 +13071,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16706,23 +13094,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16735,23 +13117,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16764,23 +13140,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16793,23 +13163,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16822,23 +13186,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16851,23 +13209,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16880,23 +13232,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16909,23 +13255,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16938,23 +13278,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16967,23 +13301,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16996,23 +13324,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17025,23 +13347,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17054,23 +13370,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time Span Breakdown", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND", "type": { @@ -17083,23 +13393,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17112,23 +13416,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17141,23 +13439,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17170,23 +13462,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17199,23 +13485,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Change request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17228,23 +13508,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17257,23 +13531,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17286,23 +13554,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17315,23 +13577,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17344,23 +13600,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17373,23 +13623,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17402,23 +13646,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17431,23 +13669,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -17460,23 +13692,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17489,23 +13715,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17518,23 +13738,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17547,23 +13761,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17576,23 +13784,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17605,23 +13807,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17634,23 +13830,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17663,23 +13853,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17692,23 +13876,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17721,23 +13899,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17750,23 +13922,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17779,23 +13945,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17808,23 +13968,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17837,23 +13991,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17866,23 +14014,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total # Problems", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", "type": { @@ -17895,27 +14037,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17928,23 +14063,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17957,23 +14086,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17986,23 +14109,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18015,23 +14132,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18044,23 +14155,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18073,23 +14178,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18102,23 +14201,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18131,23 +14224,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18160,23 +14247,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18189,23 +14270,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18218,23 +14293,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18247,23 +14316,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18276,23 +14339,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -18305,23 +14362,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18334,23 +14385,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18363,23 +14408,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18392,23 +14431,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Exclude manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18421,23 +14454,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lucha", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18450,23 +14477,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18479,23 +14500,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18508,23 +14523,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18537,23 +14546,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18566,23 +14569,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18595,23 +14592,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18624,23 +14615,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18653,23 +14638,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problems with Related Incidents", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)", "type": { @@ -18682,23 +14661,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18711,23 +14684,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18740,23 +14707,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18769,23 +14730,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18798,23 +14753,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Related Incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18827,23 +14776,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18856,23 +14799,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18885,23 +14822,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18914,23 +14845,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18943,23 +14868,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18972,23 +14891,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19001,23 +14914,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19030,23 +14937,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19059,23 +14960,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19088,23 +14983,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19117,23 +15006,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19146,23 +15029,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19175,23 +15052,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19204,23 +15075,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of known error", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])", "type": { @@ -19233,23 +15098,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19262,23 +15121,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problem state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19291,23 +15144,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19320,23 +15167,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19349,23 +15190,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19378,23 +15213,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19407,23 +15236,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19436,23 +15259,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19465,23 +15282,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -19494,23 +15305,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19523,23 +15328,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19552,23 +15351,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19581,23 +15374,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19610,23 +15397,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19639,23 +15420,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19668,23 +15443,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19697,23 +15466,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Known error", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19726,23 +15489,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group email", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19755,23 +15512,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Age of Problems", - "jsonPath": null, "nullable": false, "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())", "type": { @@ -19784,23 +15535,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19813,27 +15558,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19846,23 +15584,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19875,23 +15607,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19904,23 +15630,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19933,23 +15653,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19962,23 +15676,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19991,23 +15699,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of critical and high priority", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", "type": { @@ -20020,23 +15722,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20049,23 +15745,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20078,23 +15768,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20107,23 +15791,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20136,23 +15814,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Include members", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20165,23 +15837,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20194,23 +15860,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20223,23 +15883,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20252,23 +15906,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20281,23 +15929,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -20310,27 +15952,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20343,23 +15978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20372,23 +16001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20401,23 +16024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20430,23 +16047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20459,23 +16070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20488,23 +16093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20517,23 +16116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20546,23 +16139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20575,23 +16162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20604,23 +16185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Problems", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -20633,27 +16208,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20666,23 +16234,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20695,43 +16257,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -20740,17 +16288,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -20759,17 +16302,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -20778,14 +16316,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", @@ -20802,14 +16336,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -20822,11 +16354,7 @@ "extractLastUpdateTime": "2018-01-18T20:13:08Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Incidents", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -20837,17 +16365,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -20857,7 +16380,6 @@ "fields": [ { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20870,23 +16392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20899,23 +16415,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20928,23 +16438,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Attributes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20957,23 +16461,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20986,23 +16484,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21015,23 +16507,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21044,23 +16530,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21073,23 +16553,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21102,23 +16576,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21131,23 +16599,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close code (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21160,30 +16622,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -21191,23 +16645,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21220,23 +16668,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21249,23 +16691,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21278,23 +16714,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21307,23 +16737,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21336,23 +16760,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Notify (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21365,23 +16783,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21394,23 +16806,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21423,23 +16829,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21452,23 +16852,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requires verification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21481,23 +16875,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Maintenance schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21510,23 +16898,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21539,23 +16921,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21568,23 +16944,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21597,23 +16967,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21626,23 +16990,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21655,23 +17013,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21684,23 +17036,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Warranty expiration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21713,23 +17059,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "GL account", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21742,23 +17082,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21771,23 +17105,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21800,23 +17128,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21829,23 +17151,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21858,23 +17174,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21887,23 +17197,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21916,23 +17220,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21945,23 +17243,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21974,23 +17266,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22003,23 +17289,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22032,23 +17312,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Asset", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22061,23 +17335,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -22090,23 +17358,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22119,23 +17381,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22148,23 +17404,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22177,23 +17427,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22206,23 +17450,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22235,27 +17473,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22268,23 +17499,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22297,23 +17522,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Skip sync", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22326,23 +17545,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "DNS Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22355,23 +17568,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22384,23 +17591,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Caller (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22413,23 +17614,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Department", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22442,23 +17637,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolved by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22471,23 +17660,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22500,23 +17683,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22529,23 +17706,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -22558,27 +17729,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22591,23 +17755,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Managed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22620,23 +17778,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22649,23 +17801,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22678,23 +17824,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22707,23 +17847,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22736,23 +17870,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22765,23 +17893,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22794,23 +17916,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "PO number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22823,23 +17939,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22852,23 +17962,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business resolve time (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22881,23 +17985,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Child Incidents (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22910,23 +18008,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "IP Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22939,23 +18031,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22968,23 +18054,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22997,23 +18077,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23026,23 +18100,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Asset tag", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23055,23 +18123,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23084,23 +18146,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23113,23 +18169,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23142,23 +18192,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23171,23 +18215,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23200,23 +18238,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23229,23 +18261,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Checked out", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23258,23 +18284,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23287,23 +18307,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fully qualified domain name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23316,23 +18330,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Installed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23345,23 +18353,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23374,23 +18376,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Purchased", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23403,23 +18399,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lease contract", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23432,23 +18422,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23461,23 +18445,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", "type": { @@ -23490,23 +18468,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23519,23 +18491,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23548,23 +18514,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23577,23 +18537,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23606,23 +18560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent Incident (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23635,23 +18583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23664,23 +18606,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost currency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23693,23 +18629,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23722,23 +18652,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23751,23 +18675,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23780,23 +18698,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Subcategory (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23809,23 +18721,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23838,23 +18744,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23867,23 +18767,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23896,23 +18790,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23925,23 +18813,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23954,23 +18836,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23983,23 +18859,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Monitor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24012,23 +18882,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24041,23 +18905,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24070,23 +18928,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24099,23 +18951,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Serial number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24128,23 +18974,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24157,23 +18997,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24186,23 +19020,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time to Close an Incident (seconds)", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND", "type": { @@ -24215,23 +19043,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Owned by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24244,23 +19066,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24273,23 +19089,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Invoice number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24302,23 +19112,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24331,23 +19135,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24360,23 +19158,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24389,23 +19181,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Start date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24418,23 +19204,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24447,23 +19227,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24476,23 +19250,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24505,23 +19273,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24534,23 +19296,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order received", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24563,23 +19319,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discovery source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24592,23 +19342,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24621,23 +19365,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24650,23 +19388,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Incidents", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -24679,27 +19411,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24712,23 +19437,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Class", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24741,23 +19460,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24770,23 +19483,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Operational status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24799,23 +19506,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24828,23 +19529,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24857,23 +19552,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24886,23 +19575,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolve time (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24915,23 +19598,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reopen count (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24944,23 +19621,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24973,23 +19644,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25002,23 +19667,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Most recent discovery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25031,23 +19690,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25060,23 +19713,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25089,23 +19736,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25118,23 +19759,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25147,23 +19782,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25176,23 +19805,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -25205,23 +19828,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25234,23 +19851,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25263,23 +19874,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25292,23 +19897,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fault count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25321,23 +19920,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Caused by Change (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25350,23 +19943,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25379,23 +19966,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25408,23 +19989,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "MAC Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25437,23 +20012,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25466,23 +20035,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25495,23 +20058,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25524,23 +20081,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25553,23 +20104,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25582,23 +20127,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25611,23 +20150,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25640,23 +20173,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25669,23 +20196,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25698,23 +20219,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25727,23 +20242,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25756,23 +20265,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Supported by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25785,23 +20288,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25814,23 +20311,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25843,23 +20334,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Support group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25872,23 +20357,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25901,23 +20380,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25930,23 +20403,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Justification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25959,23 +20426,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Change Request (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25988,23 +20449,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26017,23 +20472,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Incident state (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26046,23 +20495,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26075,23 +20518,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26104,23 +20541,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Month Tooltip", - "jsonPath": null, "nullable": false, "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND", "type": { @@ -26133,23 +20564,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problem (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26162,23 +20587,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26191,23 +20610,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26220,23 +20633,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Checked in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26249,23 +20656,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Severity (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26278,23 +20679,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -26307,23 +20702,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26336,23 +20725,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26365,23 +20748,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26394,23 +20771,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26423,23 +20794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26452,23 +20817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26481,23 +20840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26510,23 +20863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26539,23 +20886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Subcategory (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26568,23 +20909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26597,23 +20932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26626,23 +20955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26655,23 +20978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Can Print", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26684,23 +21001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26713,23 +21024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26742,23 +21047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26771,23 +21070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26800,23 +21093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26829,23 +21116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26858,23 +21139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26887,23 +21162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26916,23 +21185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26945,23 +21208,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26974,23 +21231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27003,23 +21254,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27032,23 +21277,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27061,23 +21300,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27090,23 +21323,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27119,23 +21346,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27148,23 +21369,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolved (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27177,23 +21392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27206,9749 +21415,103 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null - }, - { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Time to Close an Incident", - "jsonPath": null, - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE", - "context": null - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Upon approval (Incident)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Incidents/task" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_request" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "requested_for", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "requested_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "request_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "special_instructions", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_req_item" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "configuration_item", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_catalog", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "estimated_delivery", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "context", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "billable", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_frequency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cat_item", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order_guide", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "backordered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "request", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_cat_item" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sc_catalogs", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_picture_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "workflow", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_customer_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_standalone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_scope", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "template", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_proceed_checkout", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "billable", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "meta", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ordered_item_link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_ic_version", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "image", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_policy", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "roles", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "picture", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "list_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_order_now", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "vendor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_ic_item_staging", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "entitlement_script", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "icon", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ignore_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "start_closed", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_package", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_replace_on_upgrade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "use_sc_layout", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "availability", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "custom_cart", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_picture", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_cart", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_hide_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_search", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_frequency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan_script", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_bundle", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_update_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_guide", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "preview", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "omit_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Problems/sys_user_group" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "u_u", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "exclude_manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_center", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "u_lucha", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "u_lu2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "roles", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "default_assignee", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "include_members", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Problems/problem" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "related_incidents", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "rfc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "problem_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_around", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "known_error", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Incidents/incident" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "severity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent_incident", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "subcategory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "caller_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "resolved_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "resolved_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "child_incidents", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "incident_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "notify", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "problem_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "caused_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reopen_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "rfc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Incidents/cmdb_ci" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "first_discovered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "operational_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "last_discovered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_cc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "checked_in", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "attributes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "serial_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "vendor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ip_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "support_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "asset", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "supported_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "invoice_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "managed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "fault_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_in", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "justification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "lease_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "monitor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_center", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "subcategory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "can_print", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "start_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "discovery_source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "schedule", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "fqdn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "warranty_expiration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "owned_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "asset_tag", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "manufacturer", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "purchase_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "department", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "checked_out", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "unverified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "skip_sync", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "po_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "gl_account", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "maintenance_schedule", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "install_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "dns_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mac_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "change_control", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } + "tag": "urn:li:tag:COLUMNFIELD" + } + ] }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "due", - "jsonPath": null, + "fieldPath": "Time to Close an Incident", "nullable": false, - "description": "", + "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:MEASURE" + }, + { + "tag": "urn:li:tag:CALCULATEDFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "sys_mod_count", - "jsonPath": null, + "fieldPath": "Upon approval (Incident)", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DIMENSION" + }, + { + "tag": "urn:li:tag:COLUMNFIELD" + } + ] + }, + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "value": "{\"typeNames\": [\"Embedded Data Source\"]}", + "contentType": "application/json" + }, + "systemMetadata": { + "lastObserved": 1638860400000, + "runId": "tableau-test" + } +}, +{ + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", + "contentType": "application/json" + }, + "systemMetadata": { + "lastObserved": 1638860400000, + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -36957,17 +21520,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -36976,17 +21534,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -36995,17 +21548,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -37014,14 +21562,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", @@ -37039,25 +21583,18 @@ "lastModified": { "created": { "time": 1641951867000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642658093000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -37072,34 +21609,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -37108,17 +21637,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -37127,14 +21651,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", @@ -37151,14 +21671,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -37171,11 +21689,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "test publish datasource", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -37186,17 +21700,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -37206,7 +21715,6 @@ "fields": [ { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37219,19 +21727,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Custom SQL Query", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37244,19 +21747,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37269,19 +21767,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37294,19 +21787,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37319,19 +21807,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37344,19 +21827,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37369,19 +21847,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37394,39 +21867,26 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -37435,17 +21895,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -37454,14 +21909,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", @@ -37480,17 +21931,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -37500,7 +21946,6 @@ "fields": [ { "fieldPath": "Test_Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37510,15 +21955,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37528,15 +21968,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_Run_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37546,15 +21981,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37564,15 +21994,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity_Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37582,15 +22007,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice_Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37600,15 +22020,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37618,15 +22033,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37636,15 +22046,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37654,15 +22059,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has_Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37672,32 +22072,20 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", @@ -37716,17 +22104,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -37736,7 +22119,6 @@ "fields": [ { "fieldPath": "Campaign_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37746,15 +22128,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_Run_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37764,15 +22141,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37782,15 +22154,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test_Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37800,15 +22167,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Platform", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37818,15 +22180,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37836,15 +22193,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity_Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37854,15 +22206,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice_Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37872,15 +22219,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37890,15 +22232,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37908,15 +22245,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37926,15 +22258,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37944,15 +22271,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is_Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37962,15 +22284,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37980,15 +22297,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is_Mobile_Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37998,15 +22310,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User_Agent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38016,32 +22323,20 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", @@ -38060,17 +22355,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38080,7 +22370,6 @@ "fields": [ { "fieldPath": "Platform", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38090,15 +22379,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38108,15 +22392,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice_Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38126,15 +22405,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38144,15 +22418,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity_Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38162,15 +22431,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test_Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38180,15 +22444,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is_Mobile_Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38198,15 +22457,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has_Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38216,15 +22470,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38234,15 +22483,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User_Agent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38252,15 +22496,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38270,15 +22509,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38288,15 +22522,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_Run_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38306,15 +22535,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38324,32 +22548,20 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", @@ -38368,17 +22580,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38388,7 +22595,6 @@ "fields": [ { "fieldPath": "Test_Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38398,15 +22604,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_Run_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38416,15 +22617,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity_Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38434,15 +22630,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38452,15 +22643,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has_Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38470,15 +22656,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38488,15 +22669,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38506,15 +22682,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38524,15 +22695,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38542,15 +22708,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice_Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38560,35 +22721,183 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1638860400000, + "runId": "tableau-test" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Marketo/campaignsTable" + ] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "test", + "platform": "urn:li:dataPlatform:tableau", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.OtherSchema": { + "rawSchema": "" + } + }, + "fields": [ + { + "fieldPath": "programName", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "WDC_STRING", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "name", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "WDC_STRING", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "programId", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "WDC_INT", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "description", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "WDC_STRING", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "createdAt", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "WDC_DATETIME", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "id", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.NumberType": {} + } + }, + "nativeDataType": "WDC_INT", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "workspaceName", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.StringType": {} + } + }, + "nativeDataType": "WDC_STRING", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "updatedAt", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.TimeType": {} + } + }, + "nativeDataType": "WDC_DATETIME", + "recursive": false, + "isPartOfKey": false + }, + { + "fieldPath": "active", + "nullable": false, + "description": "", + "type": { + "type": { + "com.linkedin.pegasus2avro.schema.BooleanType": {} + } + }, + "nativeDataType": "WDC_BOOL", + "recursive": false, + "isPartOfKey": false + } + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.address,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { @@ -38604,17 +22913,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38624,7 +22928,6 @@ "fields": [ { "fieldPath": "postal_code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38634,15 +22937,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38652,15 +22950,10 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "phone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38670,15 +22963,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38688,15 +22976,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38706,15 +22989,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "city_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38724,15 +23002,10 @@ }, "nativeDataType": "I2", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "district", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38742,15 +23015,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38760,35 +23028,23 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.actor,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { @@ -38804,17 +23060,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38824,7 +23075,6 @@ "fields": [ { "fieldPath": "last_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38834,15 +23084,10 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38852,15 +23097,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38870,15 +23110,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "actor_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38888,32 +23123,20 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", @@ -38932,17 +23155,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38952,7 +23170,6 @@ "fields": [ { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38962,15 +23179,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38980,15 +23192,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38998,15 +23205,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39016,15 +23218,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39034,15 +23231,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39052,15 +23244,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39070,15 +23257,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39088,15 +23270,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39106,15 +23283,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39124,15 +23296,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39142,15 +23309,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39160,15 +23322,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39178,15 +23335,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39196,15 +23348,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39214,15 +23361,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39232,15 +23374,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39250,15 +23387,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39268,15 +23400,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39286,15 +23413,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39304,15 +23426,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39322,15 +23439,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39340,15 +23452,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39358,15 +23465,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39376,15 +23478,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39394,15 +23491,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39412,15 +23504,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39430,15 +23517,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39448,15 +23530,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39466,15 +23543,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39484,15 +23556,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39502,15 +23569,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39520,15 +23582,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39538,15 +23595,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39556,15 +23608,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39574,15 +23621,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39592,15 +23634,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39610,15 +23647,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39628,15 +23660,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39646,15 +23673,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39664,15 +23686,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39682,15 +23699,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39700,15 +23712,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39718,15 +23725,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39736,15 +23738,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39754,15 +23751,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39772,15 +23764,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39790,15 +23777,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39808,15 +23790,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39826,15 +23803,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39844,15 +23816,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39862,15 +23829,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39880,15 +23842,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39898,15 +23855,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39916,15 +23868,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39934,15 +23881,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39952,15 +23894,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39970,15 +23907,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39988,15 +23920,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40006,15 +23933,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40024,15 +23946,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40042,15 +23959,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40060,32 +23972,20 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", @@ -40104,17 +24004,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -40124,7 +24019,6 @@ "fields": [ { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40134,15 +24028,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40152,15 +24041,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40170,15 +24054,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "requested_for", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40188,15 +24067,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40206,15 +24080,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40224,15 +24093,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40242,15 +24106,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40260,15 +24119,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40278,15 +24132,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40296,15 +24145,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40314,15 +24158,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40332,15 +24171,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40350,15 +24184,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40368,15 +24197,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40386,15 +24210,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40404,15 +24223,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40422,15 +24236,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40440,15 +24249,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40458,15 +24262,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40476,15 +24275,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40494,15 +24288,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40512,15 +24301,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40530,15 +24314,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40548,15 +24327,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40566,15 +24340,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40584,15 +24353,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40602,15 +24366,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "requested_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40620,15 +24379,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40638,15 +24392,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40656,15 +24405,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40674,15 +24418,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40692,15 +24431,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40710,15 +24444,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40728,15 +24457,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40746,15 +24470,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40764,15 +24483,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40782,15 +24496,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40800,15 +24509,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40818,15 +24522,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40836,15 +24535,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40854,15 +24548,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40872,15 +24561,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40890,15 +24574,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40908,15 +24587,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "request_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40926,15 +24600,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40944,15 +24613,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40962,15 +24626,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40980,15 +24639,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40998,15 +24652,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41016,15 +24665,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41034,15 +24678,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41052,15 +24691,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41070,15 +24704,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41088,15 +24717,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41106,15 +24730,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41124,15 +24743,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41142,15 +24756,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41160,15 +24769,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41178,15 +24782,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41196,15 +24795,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41214,15 +24808,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41232,15 +24821,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41250,15 +24834,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "special_instructions", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41268,15 +24847,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41286,15 +24860,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41304,15 +24873,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41322,15 +24886,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41340,15 +24899,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41358,15 +24912,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41376,32 +24925,20 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", @@ -41420,17 +24957,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -41440,7 +24972,6 @@ "fields": [ { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41450,15 +24981,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41468,15 +24994,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41486,15 +25007,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41504,15 +25020,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41522,15 +25033,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41540,15 +25046,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41558,15 +25059,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41576,15 +25072,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "configuration_item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41594,15 +25085,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41612,15 +25098,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41630,15 +25111,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41648,15 +25124,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41666,15 +25137,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41684,15 +25150,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41702,15 +25163,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41720,15 +25176,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41738,15 +25189,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41756,15 +25202,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41774,15 +25215,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_catalog", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41792,15 +25228,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41810,15 +25241,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41828,15 +25254,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41846,15 +25267,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41864,15 +25280,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41882,15 +25293,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41900,15 +25306,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41918,15 +25319,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41936,15 +25332,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41954,15 +25345,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41972,15 +25358,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41990,15 +25371,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "estimated_delivery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42008,15 +25384,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42026,15 +25397,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "context", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42044,15 +25410,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42062,15 +25423,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42080,15 +25436,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42098,15 +25449,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42116,15 +25462,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42134,15 +25475,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42152,15 +25488,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42170,15 +25501,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42188,15 +25514,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42206,15 +25527,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42224,15 +25540,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42242,15 +25553,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cat_item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42260,15 +25566,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42278,15 +25579,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42296,15 +25592,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42314,15 +25605,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42332,15 +25618,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order_guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42350,15 +25631,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42368,15 +25644,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42386,15 +25657,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42404,15 +25670,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42422,15 +25683,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "backordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42440,15 +25696,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42458,15 +25709,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42476,15 +25722,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42494,15 +25735,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42512,15 +25748,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42530,15 +25761,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42548,15 +25774,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42566,15 +25787,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42584,15 +25800,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42602,15 +25813,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42620,15 +25826,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42638,15 +25839,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42656,15 +25852,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42674,15 +25865,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42692,15 +25878,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42710,15 +25891,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42728,15 +25904,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42746,15 +25917,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42764,15 +25930,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42782,15 +25943,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42800,32 +25956,20 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", @@ -42844,17 +25988,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -42864,7 +26003,6 @@ "fields": [ { "fieldPath": "sc_catalogs", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42874,15 +26012,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42892,15 +26025,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42910,15 +26038,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_picture_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42928,15 +26051,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "workflow", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42946,15 +26064,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_customer_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42964,15 +26077,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42982,15 +26090,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_standalone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43000,15 +26103,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43018,15 +26116,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43036,15 +26129,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43054,15 +26142,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_scope", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43072,15 +26155,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "template", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43090,15 +26168,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_proceed_checkout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43108,15 +26181,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43126,15 +26194,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43144,15 +26207,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43162,15 +26220,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43180,15 +26233,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "meta", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43198,15 +26246,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ordered_item_link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43216,15 +26259,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43234,15 +26272,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_ic_version", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43252,15 +26285,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "image", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43270,15 +26298,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43288,15 +26311,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43306,15 +26324,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_policy", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43324,15 +26337,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43342,15 +26350,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43360,15 +26363,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "list_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43378,15 +26376,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_order_now", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43396,15 +26389,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43414,15 +26402,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_ic_item_staging", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43432,15 +26415,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43450,15 +26428,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "entitlement_script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43468,15 +26441,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43486,15 +26454,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "icon", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43504,15 +26467,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ignore_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43522,15 +26480,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "start_closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43540,15 +26493,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_package", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43558,15 +26506,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43576,15 +26519,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_replace_on_upgrade", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43594,15 +26532,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43612,15 +26545,10 @@ }, "nativeDataType": "WDC_FLOAT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "use_sc_layout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43630,15 +26558,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43648,15 +26571,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "availability", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43666,15 +26584,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43684,15 +26597,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "custom_cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43702,15 +26610,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43720,15 +26623,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43738,15 +26636,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43756,15 +26649,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_hide_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43774,15 +26662,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43792,15 +26675,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43810,15 +26688,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43828,15 +26701,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_search", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43846,15 +26714,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43864,15 +26727,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43882,15 +26740,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43900,15 +26753,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan_script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43918,15 +26766,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_bundle", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43936,15 +26779,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_update_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43954,15 +26792,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43972,15 +26805,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43990,15 +26818,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "preview", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44008,15 +26831,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "omit_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44026,32 +26844,20 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)", @@ -44070,17 +26876,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -44090,7 +26891,6 @@ "fields": [ { "fieldPath": "u_u", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44100,15 +26900,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44118,15 +26913,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44136,15 +26926,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "exclude_manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44154,15 +26939,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44172,15 +26952,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44190,15 +26965,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44208,15 +26978,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44226,15 +26991,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44244,15 +27004,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44262,15 +27017,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_lucha", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44280,15 +27030,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44298,15 +27043,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_lu2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44316,15 +27056,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44334,15 +27069,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44352,15 +27082,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44370,15 +27095,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "default_assignee", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44388,15 +27108,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "email", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44406,15 +27121,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44424,15 +27134,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44442,15 +27147,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44460,15 +27160,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "include_members", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44478,32 +27173,20 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", @@ -44522,17 +27205,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -44542,7 +27220,6 @@ "fields": [ { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44552,15 +27229,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44570,15 +27242,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44588,15 +27255,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44606,15 +27268,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44624,15 +27281,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44642,15 +27294,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44660,15 +27307,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44678,15 +27320,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "related_incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44696,15 +27333,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44714,15 +27346,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44732,15 +27359,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44750,15 +27372,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44768,15 +27385,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44786,15 +27398,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44804,15 +27411,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44822,15 +27424,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44840,15 +27437,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44858,15 +27450,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rfc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44876,15 +27463,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44894,15 +27476,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44912,15 +27489,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "problem_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44930,15 +27502,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44948,15 +27515,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44966,15 +27528,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44984,15 +27541,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45002,15 +27554,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45020,15 +27567,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45038,15 +27580,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45056,15 +27593,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45074,15 +27606,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45092,15 +27619,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45110,15 +27632,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45128,15 +27645,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45146,15 +27658,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45164,15 +27671,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45182,15 +27684,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45200,15 +27697,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45218,15 +27710,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45236,15 +27723,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45254,15 +27736,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_around", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45272,15 +27749,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45290,15 +27762,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45308,15 +27775,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45326,15 +27788,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45344,15 +27801,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45362,15 +27814,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45380,15 +27827,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45398,15 +27840,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45416,15 +27853,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45434,15 +27866,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "known_error", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45452,15 +27879,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45470,15 +27892,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45488,15 +27905,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45506,15 +27918,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45524,15 +27931,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45542,15 +27944,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45560,15 +27957,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45578,15 +27970,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45596,15 +27983,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45614,15 +27996,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45632,15 +28009,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45650,15 +28022,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45668,15 +28035,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45686,15 +28048,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45704,15 +28061,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45722,15 +28074,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45740,32 +28087,20 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", @@ -45784,17 +28119,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -45804,7 +28134,6 @@ "fields": [ { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45814,15 +28143,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45832,15 +28156,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45850,15 +28169,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "severity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45868,15 +28182,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45886,15 +28195,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45904,15 +28208,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45922,15 +28221,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45940,15 +28234,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent_incident", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45958,15 +28247,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "subcategory", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45976,15 +28260,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45994,15 +28273,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "caller_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46012,15 +28286,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "resolved_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46030,15 +28299,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46048,15 +28312,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46066,15 +28325,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "resolved_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46084,15 +28338,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46102,15 +28351,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46120,15 +28364,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46138,15 +28377,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46156,15 +28390,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46174,15 +28403,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46192,15 +28416,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46210,15 +28429,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46228,15 +28442,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46246,15 +28455,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46264,15 +28468,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46282,15 +28481,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46300,15 +28494,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46318,15 +28507,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "child_incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46336,15 +28520,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46354,15 +28533,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "incident_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46372,15 +28546,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "notify", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46390,15 +28559,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46408,15 +28572,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46426,15 +28585,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46444,15 +28598,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46462,15 +28611,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46480,15 +28624,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "problem_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46498,15 +28637,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46516,15 +28650,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46534,15 +28663,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46552,15 +28676,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46570,15 +28689,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46588,15 +28702,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46606,15 +28715,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46624,15 +28728,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46642,15 +28741,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46660,15 +28754,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "caused_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46678,15 +28767,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46696,15 +28780,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46714,15 +28793,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46732,15 +28806,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46750,15 +28819,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46768,15 +28832,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46786,15 +28845,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46804,15 +28858,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46822,15 +28871,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46840,15 +28884,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46858,15 +28897,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46876,15 +28910,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46894,15 +28923,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reopen_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46912,15 +28936,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46930,15 +28949,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46948,15 +28962,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46966,15 +28975,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46984,15 +28988,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rfc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47002,15 +29001,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47020,15 +29014,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47038,15 +29027,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47056,15 +29040,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47074,15 +29053,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47092,15 +29066,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47110,15 +29079,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47128,15 +29092,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47146,15 +29105,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47164,15 +29118,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47182,15 +29131,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47200,15 +29144,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47218,32 +29157,20 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", @@ -47262,17 +29189,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -47282,7 +29204,6 @@ "fields": [ { "fieldPath": "first_discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47292,15 +29213,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "operational_status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47310,15 +29226,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47328,15 +29239,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_cc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47346,15 +29252,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "checked_in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47364,15 +29265,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "attributes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47382,15 +29278,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "serial_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47400,15 +29291,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47418,15 +29304,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ip_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47436,15 +29317,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "support_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47454,15 +29330,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47472,15 +29343,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "asset", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47490,15 +29356,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47508,15 +29369,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "supported_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47526,15 +29382,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "invoice_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47544,15 +29395,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "managed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47562,15 +29408,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "fault_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47580,15 +29421,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47598,15 +29434,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47616,15 +29447,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47634,15 +29460,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "justification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47652,15 +29473,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47670,15 +29486,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47688,15 +29499,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47706,15 +29512,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47724,15 +29525,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47742,15 +29538,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47760,15 +29551,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47778,15 +29564,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "lease_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47796,15 +29577,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "monitor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47814,15 +29590,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47832,15 +29603,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "subcategory", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47850,15 +29616,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47868,15 +29629,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47886,15 +29642,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "can_print", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47904,15 +29655,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47922,15 +29668,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47940,15 +29681,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47958,15 +29694,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "start_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47976,15 +29707,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "discovery_source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47994,15 +29720,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48012,15 +29733,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48030,15 +29746,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48048,15 +29759,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48066,15 +29772,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "fqdn", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48084,15 +29785,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "warranty_expiration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48102,15 +29798,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "owned_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48120,15 +29811,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "asset_tag", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48138,15 +29824,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48156,15 +29837,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "purchase_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48174,15 +29850,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48192,15 +29863,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "department", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48210,15 +29876,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48228,15 +29889,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "checked_out", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48246,15 +29902,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "unverified", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48264,15 +29915,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "skip_sync", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48282,15 +29928,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "po_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48300,15 +29941,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48318,15 +29954,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "gl_account", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48336,15 +29967,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "maintenance_schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48354,15 +29980,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "install_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48372,15 +29993,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "dns_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48390,15 +30006,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48408,15 +30019,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mac_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48426,15 +30032,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "change_control", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48444,15 +30045,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "install_status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48462,15 +30058,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48480,15 +30071,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48498,32 +30084,20 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", @@ -48540,14 +30114,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -48560,11 +30132,8 @@ "extractLastUpdateTime": "", "type": "PublishedDatasource" }, - "externalUrl": null, "name": "test publish datasource", - "qualifiedName": null, "description": "description for test publish datasource", - "uri": null, "tags": [] } }, @@ -48575,17 +30144,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -48595,7 +30159,6 @@ "fields": [ { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48608,27 +30171,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48641,27 +30197,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48674,27 +30223,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48707,34 +30249,25 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Published SQL Query", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -48742,23 +30275,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48771,27 +30298,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48804,27 +30324,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48837,47 +30350,32 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -48886,17 +30384,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -48905,14 +30398,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", @@ -48929,14 +30418,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -48949,11 +30436,8 @@ "extractLastUpdateTime": "", "type": "PublishedDatasource" }, - "externalUrl": null, "name": "Superstore Datasource", - "qualifiedName": null, "description": "Description for Superstore dataset", - "uri": null, "tags": [] } }, @@ -48964,17 +30448,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -48984,7 +30463,6 @@ "fields": [ { "fieldPath": "Top Customers by Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48997,26 +30475,19 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:SETFIELD", - "context": null + "tag": "urn:li:tag:SETFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returns", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49024,23 +30495,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Segment", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49053,27 +30518,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit Ratio", - "jsonPath": null, "nullable": false, "description": "formula: SUM([Profit])/SUM([Sales])", "type": { @@ -49086,23 +30544,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49115,23 +30567,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49144,23 +30590,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49173,27 +30613,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49206,27 +30639,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49239,27 +30665,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49272,30 +30691,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Orders", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49303,23 +30714,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49332,23 +30737,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit (bin)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49361,19 +30760,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:BINFIELD", - "context": null + "tag": "urn:li:tag:BINFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID (Returns)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49386,23 +30780,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Person", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49415,27 +30803,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sub-Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49448,27 +30829,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49481,27 +30855,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49514,19 +30881,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49539,27 +30901,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49572,26 +30927,19 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "People", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49599,23 +30947,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Country/Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49628,23 +30970,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49657,23 +30993,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49686,23 +31016,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Mode", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49715,27 +31039,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49748,27 +31065,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sales", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49781,27 +31091,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49814,23 +31117,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Row ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49843,23 +31140,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49872,23 +31163,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:GROUPFIELD", - "context": null + "tag": "urn:li:tag:GROUPFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region (People)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49901,23 +31186,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49930,27 +31209,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49963,27 +31235,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49996,43 +31261,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50041,17 +31292,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -50060,17 +31306,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -50079,33 +31320,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", @@ -50117,17 +31349,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -50137,9 +31364,7 @@ "fields": [ { "fieldPath": "amount", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50147,17 +31372,11 @@ }, "nativeDataType": "NUMERIC", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50165,17 +31384,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rental_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50183,17 +31396,11 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50201,17 +31408,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -50219,17 +31420,11 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50237,16 +31432,9 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } }, { @@ -50259,11 +31447,7 @@ { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": {}, - "externalUrl": null, "name": "Custom SQL Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -50277,20 +31461,14 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50299,17 +31477,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -50318,33 +31491,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.staff,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", @@ -50356,17 +31520,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -50376,9 +31535,7 @@ "fields": [ { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50386,17 +31543,11 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50404,17 +31555,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50422,17 +31567,11 @@ }, "nativeDataType": "NUMERIC", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50440,17 +31579,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -50458,17 +31591,11 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50476,17 +31603,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50494,16 +31615,9 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } }, { @@ -50516,11 +31630,7 @@ { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": {}, - "externalUrl": null, "name": "Custom SQL Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -50534,20 +31644,14 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50556,10 +31660,7 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/test_tableau.py b/metadata-ingestion/tests/integration/tableau/test_tableau.py index d87e8d8dc2f248..9587880fd52bad 100644 --- a/metadata-ingestion/tests/integration/tableau/test_tableau.py +++ b/metadata-ingestion/tests/integration/tableau/test_tableau.py @@ -5,7 +5,12 @@ import pytest from freezegun import freeze_time +from datahub.configuration.source_common import DEFAULT_ENV from datahub.ingestion.run.pipeline import Pipeline +from datahub.ingestion.source.tableau_common import ( + TableauLineageOverrides, + make_table_urn, +) from tests.test_helpers import mce_helpers FROZEN_TIME = "2021-12-07 07:00:00" @@ -79,6 +84,7 @@ def test_tableau_ingest(pytestconfig, tmp_path): "dvdrental": "public", "someotherdb": "schema", }, + "platform_instance_map": {"postgres": "demo_postgres_instance"}, }, }, "sink": { @@ -98,3 +104,52 @@ def test_tableau_ingest(pytestconfig, tmp_path): golden_path=test_resources_dir / "tableau_mces_golden.json", ignore_paths=mce_helpers.IGNORE_PATH_TIMESTAMPS, ) + + +def test_lineage_overrides(): + + # Simple - specify platform instance to presto table + assert ( + make_table_urn( + DEFAULT_ENV, + "presto_catalog", + "presto", + "test-schema", + "presto_catalog.test-schema.test-table", + platform_instance_map={"presto": "my_presto_instance"}, + ) + == "urn:li:dataset:(urn:li:dataPlatform:presto,my_presto_instance.presto_catalog.test-schema.test-table,PROD)" + ) + + # Transform presto urn to hive urn + # resulting platform instance for hive = mapped platform instance + presto_catalog + assert ( + make_table_urn( + DEFAULT_ENV, + "presto_catalog", + "presto", + "test-schema", + "presto_catalog.test-schema.test-table", + platform_instance_map={"presto": "my_instance"}, + lineage_overrides=TableauLineageOverrides( + platform_override_map={"presto": "hive"}, + ), + ) + == "urn:li:dataset:(urn:li:dataPlatform:hive,my_instance.presto_catalog.test-schema.test-table,PROD)" + ) + + # tranform hive urn to presto urn + assert ( + make_table_urn( + DEFAULT_ENV, + "", + "hive", + "test-schema", + "test-schema.test-table", + platform_instance_map={"hive": "my_presto_instance.presto_catalog"}, + lineage_overrides=TableauLineageOverrides( + platform_override_map={"hive": "presto"}, + ), + ) + == "urn:li:dataset:(urn:li:dataPlatform:presto,my_presto_instance.presto_catalog.test-schema.test-table,PROD)" + )