From aa5066e0afb8448e11b0ba015161f4bbfb064b15 Mon Sep 17 00:00:00 2001 From: mayurinehate <33225191+mayurinehate@users.noreply.github.com> Date: Fri, 18 Mar 2022 02:37:36 +0530 Subject: [PATCH] feat(ingestion): tableau - support for tableau version 2021.1 and older (#4437) fixes #4119 --- .../src/datahub/ingestion/source/tableau.py | 27 +- .../ingestion/source/tableau_common.py | 48 +- ...son => customSQLTablesConnection_all.json} | 0 ...> publishedDatasourcesConnection_all.json} | 137 +- .../tableau/setup/workbooksConnection_0.json | 2 +- ...on_8.json => workbooksConnection_all.json} | 16768 +-- .../tableau/tableau_mces_golden.json | 86050 +--------------- .../tests/integration/tableau/test_tableau.py | 8 +- 8 files changed, 2972 insertions(+), 100068 deletions(-) rename metadata-ingestion/tests/integration/tableau/setup/{customSQLTablesConnection_2.json => customSQLTablesConnection_all.json} (100%) rename metadata-ingestion/tests/integration/tableau/setup/{publishedDatasourcesConnection_2.json => publishedDatasourcesConnection_all.json} (86%) rename metadata-ingestion/tests/integration/tableau/setup/{workbooksConnection_8.json => workbooksConnection_all.json} (56%) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau.py index e6cc763892d277..dfe884aa1c0777 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau.py @@ -671,7 +671,26 @@ def emit_upstream_tables(self) -> Iterable[MetadataWorkUnit]: yield self.get_metadata_change_event(dataset_snapshot) + # Older tableau versions do not support fetching sheet's upstreamDatasources, + # This achieves the same effect by using datasource's downstreamSheets + def get_sheetwise_upstream_datasources(self, workbook: dict) -> dict: + sheet_upstream_datasources: dict = {} + + for embedded_ds in workbook.get("embeddedDatasources", []): + for sheet in embedded_ds.get("downstreamSheets", []): + if sheet.get("id") not in sheet_upstream_datasources: + sheet_upstream_datasources[sheet.get("id")] = set() + sheet_upstream_datasources[sheet.get("id")].add(embedded_ds.get("id")) + + for published_ds in workbook.get("upstreamDatasources", []): + for sheet in published_ds.get("downstreamSheets", []): + if sheet.get("id") not in sheet_upstream_datasources: + sheet_upstream_datasources[sheet.get("id")] = set() + sheet_upstream_datasources[sheet.get("id")].add(published_ds.get("id")) + return sheet_upstream_datasources + def emit_sheets_as_charts(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: + sheet_upstream_datasources = self.get_sheetwise_upstream_datasources(workbook) for sheet in workbook.get("sheets", []): chart_snapshot = ChartSnapshot( urn=builder.make_chart_urn(self.platform, sheet.get("id")), @@ -706,9 +725,9 @@ def emit_sheets_as_charts(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: # datasource urn datasource_urn = [] - data_sources = sheet.get("upstreamDatasources", []) - for datasource in data_sources: - ds_id = datasource.get("id") + data_sources = sheet_upstream_datasources.get(sheet.get("id"), set()) + + for ds_id in data_sources: if ds_id is None or not ds_id: continue ds_urn = builder.make_dataset_urn(self.platform, ds_id, self.config.env) @@ -722,7 +741,7 @@ def emit_sheets_as_charts(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: title=sheet.get("name", ""), lastModified=last_modified, externalUrl=sheet_external_url, - inputs=datasource_urn, + inputs=sorted(datasource_urn), customProperties=fields, ) chart_snapshot.aspects.append(chart_info) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py index 898ac656e34ade..1ebcac3586fa45 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py @@ -50,10 +50,6 @@ class MetadataQueryException(Exception): name path } - upstreamDatasources { - id - name - } datasourceFields { __typename id @@ -124,6 +120,10 @@ class MetadataQueryException(Exception): extractLastRefreshTime extractLastIncrementalUpdateTime extractLastUpdateTime + downstreamSheets { + name + id + } upstreamDatabases { id name @@ -176,14 +176,19 @@ class MetadataQueryException(Exception): dataType } } - upstreamDatasources { - name - } workbook { name projectName } } + upstreamDatasources { + name + id + downstreamSheets { + name + id + } + } } """ @@ -241,21 +246,23 @@ class MetadataQueryException(Exception): extractLastRefreshTime extractLastIncrementalUpdateTime extractLastUpdateTime - downstreamSheets { - name - id - workbook { - name - projectName - } - } + upstreamDatabases { + id + name + connectionType + isEmbedded + } upstreamTables { + id + name + schema + fullName + connectionType + description + columns { name - schema - fullName - connectionType - description - contact {name} + remoteType + } } fields { __typename @@ -291,7 +298,6 @@ class MetadataQueryException(Exception): dataType } } - upstreamDatasources {name} owner {username} description uri diff --git a/metadata-ingestion/tests/integration/tableau/setup/customSQLTablesConnection_2.json b/metadata-ingestion/tests/integration/tableau/setup/customSQLTablesConnection_all.json similarity index 100% rename from metadata-ingestion/tests/integration/tableau/setup/customSQLTablesConnection_2.json rename to metadata-ingestion/tests/integration/tableau/setup/customSQLTablesConnection_all.json diff --git a/metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_2.json b/metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_all.json similarity index 86% rename from metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_2.json rename to metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_all.json index a7e29a7a7bc070..009c7defb3105c 100644 --- a/metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_2.json +++ b/metadata-ingestion/tests/integration/tableau/setup/publishedDatasourcesConnection_all.json @@ -20,30 +20,41 @@ } } ], + "upstreamDatabases": [ + { + "id": "a7825692-7de9-113d-5377-ae113331a9ec", + "name": "dvdrental", + "connectionType": "postgres", + "isEmbedded": false + } + ], "upstreamTables": [ { + "id": "39657832-0769-6372-60c3-687a51e2a772", "name": "customer", "schema": "", "fullName": "customer", "connectionType": "postgres", "description": "", - "contact": null + "columns": [] }, { + "id": "3cdd0522-44ef-62eb-ba52-71545c258344", "name": "payment", "schema": "", "fullName": "payment", "connectionType": "postgres", "description": "", - "contact": null + "columns": [] }, { + "id": "7df39af9-6767-4c9c-4120-155a024de062", "name": "staff", "schema": "", "fullName": "staff", "connectionType": "postgres", "description": "", - "contact": null + "columns": [] } ], "fields": [ @@ -235,30 +246,144 @@ } } ], + "upstreamDatabases": [ + { + "id": "1ade1d51-bbc3-ed8d-25d2-c51f44b8b31b", + "name": "Sample - Superstore.xls", + "connectionType": "excel-direct", + "isEmbedded": true + } + ], "upstreamTables": [ { + "id": "15714253-8e46-a209-63cc-700705b66de9", "name": "People", "schema": "", "fullName": "[People$]", "connectionType": "excel-direct", "description": "", - "contact": null + "columns": [ + { + "name": "Person", + "remoteType": "WSTR" + }, + { + "name": "Region", + "remoteType": "WSTR" + } + ] }, { + "id": "19be3c28-8e4d-ebac-b44d-8f0851d9f206", "name": "Returns", "schema": "", "fullName": "[Returns$]", "connectionType": "excel-direct", "description": "", - "contact": null + "columns": [ + { + "name": "Returned", + "remoteType": "WSTR" + }, + { + "name": "Order ID", + "remoteType": "WSTR" + } + ] }, { + "id": "b0e0c3eb-6e53-e0f5-ded1-478d5d9f7281", "name": "Orders", "schema": "", "fullName": "[Orders$]", "connectionType": "excel-direct", "description": "", - "contact": null + "columns": [ + { + "name": "Product ID", + "remoteType": "WSTR" + }, + { + "name": "Category", + "remoteType": "WSTR" + }, + { + "name": "Postal Code", + "remoteType": "I8" + }, + { + "name": "City", + "remoteType": "WSTR" + }, + { + "name": "Quantity", + "remoteType": "I8" + }, + { + "name": "State", + "remoteType": "WSTR" + }, + { + "name": "Order Date", + "remoteType": "DATE" + }, + { + "name": "Customer Name", + "remoteType": "WSTR" + }, + { + "name": "Country/Region", + "remoteType": "WSTR" + }, + { + "name": "Sales", + "remoteType": "R8" + }, + { + "name": "Segment", + "remoteType": "WSTR" + }, + { + "name": "Sub-Category", + "remoteType": "WSTR" + }, + { + "name": "Profit", + "remoteType": "R8" + }, + { + "name": "Product Name", + "remoteType": "WSTR" + }, + { + "name": "Customer ID", + "remoteType": "WSTR" + }, + { + "name": "Order ID", + "remoteType": "WSTR" + }, + { + "name": "Row ID", + "remoteType": "I8" + }, + { + "name": "Discount", + "remoteType": "R8" + }, + { + "name": "Ship Date", + "remoteType": "DATE" + }, + { + "name": "Ship Mode", + "remoteType": "WSTR" + }, + { + "name": "Region", + "remoteType": "WSTR" + } + ] } ], "fields": [ diff --git a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_0.json b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_0.json index 6a9af3f8dd489e..6ff5400dc86e03 100644 --- a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_0.json +++ b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_0.json @@ -6,7 +6,7 @@ "hasNextPage": true, "endCursor": null }, - "totalCount": 8 + "totalCount": 3 } } } \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_8.json b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json similarity index 56% rename from metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_8.json rename to metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json index 2c48ea5bb9e4d3..5f4d1e7c91c55a 100644 --- a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_8.json +++ b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json @@ -28,12 +28,6 @@ "path": "EmailPerformancebyCampaign/EmailPerformancebyCampaign" } ], - "upstreamDatasources": [ - { - "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", - "name": "Marketo" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -140,12 +134,6 @@ "path": "EmailPerformancebyCampaign/EmailPerformancebyCampaign" } ], - "upstreamDatasources": [ - { - "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", - "name": "Marketo" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -429,12 +417,6 @@ "path": "EmailPerformancebyCampaign/EmailPerformancebyCampaign" } ], - "upstreamDatasources": [ - { - "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", - "name": "Marketo" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -740,12 +722,6 @@ "path": "EmailPerformancebyCampaign/EmailPerformancebyCampaign" } ], - "upstreamDatasources": [ - { - "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", - "name": "Marketo" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -1316,6 +1292,24 @@ ] } ], + "downstreamSheets": [ + { + "id": "222d1406-de0e-cd8d-0b94-9b45a0007e59", + "name": "Timeline - Sent" + }, + { + "id": "38130558-4194-2e2a-3046-c0d887829cb4", + "name": "Campaign List" + }, + { + "id": "692a2da4-2a82-32c1-f713-63b8e4325d86", + "name": "Summary" + }, + { + "id": "f4317efd-c3e6-6ace-8fe6-e71b590bbbcc", + "name": "Mobile - Sent by Campaign" + } + ], "fields": [ { "__typename": "CalculatedField", @@ -2611,12 +2605,6 @@ "path": "dvdrental/dvdRentalDashboard" } ], - "upstreamDatasources": [ - { - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -2639,12 +2627,6 @@ "updatedAt": "2022-01-14T22:39:55Z", "tags": [], "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -2761,16 +2743,6 @@ } ], "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", - "name": "Superstore Datasource" - }, - { - "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", - "name": "Superstore Datasource" - } - ], "datasourceFields": [ { "__typename": "DatasourceField", @@ -2901,6 +2873,16 @@ "columns": [] } ], + "downstreamSheets": [ + { + "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", + "name": "Sheet 1" + }, + { + "id": "c57a5574-db47-46df-677f-0b708dab14db", + "name": "Sheet 2" + } + ], "fields": [ { "__typename": "ColumnField", @@ -3543,6 +3525,12 @@ ] } ], + "downstreamSheets": [ + { + "id": "e604255e-0573-3951-6db7-05bee48116c1", + "name": "Sheet 3" + } + ], "fields": [ { "__typename": "DatasourceField", @@ -3827,6 +3815,18 @@ "projectName": "default" } } + ], + "upstreamDatasources": [ + { + "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", + "name": "Superstore Datasource", + "downstreamSheets": [ + { + "id": "e604255e-0573-3951-6db7-05bee48116c1", + "name": "Sheet 3" + } + ] + } ] }, { @@ -3855,16 +3855,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -4124,16 +4114,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -4363,16 +4343,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -4635,12 +4605,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -4825,16 +4789,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -4989,12 +4943,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -5182,16 +5130,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -5394,16 +5332,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -5600,12 +5528,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -5748,16 +5670,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -5907,12 +5819,6 @@ "updatedAt": "2021-12-17T19:15:02Z", "tags": [], "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -6004,16 +5910,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "CalculatedField", @@ -6223,16 +6119,6 @@ "updatedAt": "2021-12-17T19:15:02Z", "tags": [], "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -6364,16 +6250,6 @@ "updatedAt": "2021-12-17T19:15:02Z", "tags": [], "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -6525,16 +6401,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -6701,12 +6567,6 @@ "path": "ExecutiveDashboard/ExecutiveDashboard" } ], - "upstreamDatasources": [ - { - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - } - ], "datasourceFields": [ { "__typename": "ColumnField", @@ -8138,6 +7998,28 @@ ] } ], + "downstreamSheets": [ + { + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?" + }, + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests" + }, + { + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change" + }, + { + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests" + }, + { + "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", + "name": "Tooltip - Request Breakdown by Priority" + } + ], "fields": [ { "__typename": "ColumnField", @@ -13858,6 +13740,32 @@ ] } ], + "downstreamSheets": [ + { + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems" + }, + { + "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", + "name": "Tooltip - Problem Breakdown by Priority" + }, + { + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems" + }, + { + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems" + }, + { + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems" + }, + { + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors" + } + ], "fields": [ { "__typename": "ColumnField", @@ -17666,6 +17574,72 @@ ] } ], + "downstreamSheets": [ + { + "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", + "name": "Opened Incidents" + }, + { + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems" + }, + { + "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", + "name": "Tooltip - Request Breakdown by Priority" + }, + { + "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", + "name": "Tooltip - Problem Breakdown by Priority" + }, + { + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems" + }, + { + "id": "8385ea9a-0749-754f-7ad9-824433de2120", + "name": "Tooltip - Incident Breakdown by Priority" + }, + { + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?" + }, + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests" + }, + { + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change" + }, + { + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems" + }, + { + "id": "373c6466-bb0c-b319-8752-632456349261", + "name": "Overdue" + }, + { + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems" + }, + { + "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", + "name": "Total Incidents by Category and YoY Change" + }, + { + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors" + }, + { + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests" + }, + { + "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", + "name": "AVG Time to Solve an Incident" + } + ], "fields": [ { "__typename": "ColumnField", @@ -21598,16319 +21572,237 @@ ] }, { - "id": "7e970a24-304e-3d8f-cc34-1218efefac84", - "name": "InMail Engagement", - "luid": "2e59a42c-e29d-4684-ac93-6c46fcceaec2", + "id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c", + "name": "Workbook published ds", + "luid": "190a6a5c-63ed-4de1-8045-faeae5df5b01", "projectName": "default", "owner": { "username": "jawadqu@gmail.com" }, "description": "", - "uri": "sites/4989/workbooks/15604", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", + "uri": "sites/4989/workbooks/17904", + "createdAt": "2022-01-12T01:44:27Z", + "updatedAt": "2022-01-20T05:54:53Z", "sheets": [ { - "id": "091c8f7a-0b0d-a80a-9dac-9e2e699bff08", - "name": "Number of InMail Sent", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "0b359c2f-7d7d-3de8-77c8-f8be2fbacae5", - "name": "Tooltip: volume InMail sent vs accepted by time of day and weekday", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", + "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", + "name": "published sheet ds", + "path": "Workbookpublishedds/Sheet1", + "createdAt": "2022-01-12T01:44:27Z", + "updatedAt": "2022-01-20T05:54:53Z", "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], + "containedInDashboards": [], "datasourceFields": [ { - "__typename": "ColumnField", - "id": "187465cb-2419-3db5-3bd1-9bf1f6acd2e9", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "0c58dcc2-89c5-5db3-7507-baceafd58d8a", - "name": "InMail Response Rate", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "32a31217-0d14-7251-8179-15f825ed24bc", - "name": "Tooltip: volume InMail sent vs accepted by time of day", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "187465cb-2419-3db5-3bd1-9bf1f6acd2e9", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "3aaaa573-1a8d-7cc8-cb53-7b0123da92fd", - "name": "All Team Memeber Engagement", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "59975b4b-60d2-1795-be72-0c894824ae7e", - "name": "Weekday by time of day response rate heatmap", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "75c97c18-9277-795d-da22-f40c5c7d7dee", - "name": "InMail response rate by time of day", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "8dafd980-4072-705e-8a8d-5d7f162fdcd2", - "name": "Best Time to Send InMails", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "CalculatedField", - "id": "e7c4027c-6821-3b50-007f-b0ccb33035e5", - "name": "Top Acceptance Rate?", - "description": "Tests data for top ranked response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "BOOLEAN", - "aggregation": null, - "formula": "// This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "b8182e39-23c2-0ee0-72bb-3e2f390b6072", - "name": "InMail response by weekday", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "bc17caa4-58af-8eca-2bdc-6d4781cf98aa", - "name": "Tooltip: volume InMail sent vs accepted by weekday", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "187465cb-2419-3db5-3bd1-9bf1f6acd2e9", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "c0b38367-f999-7c8f-5ce9-ff27ee01951a", - "name": "InMail Response Rate Timeline", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "187465cb-2419-3db5-3bd1-9bf1f6acd2e9", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "f08c9444-4902-7fa2-b4c7-5539effee2a0", - "name": "Best Day to Send InMails", - "path": "", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "tags": [], - "containedInDashboards": [ - { - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "firstName" - }, - { - "name": "lastName" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "upstreamColumns": [], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "upstreamColumns": [ - { - "name": "seatId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "upstreamColumns": [ - { - "name": "activityOutcomeType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "upstreamColumns": [ - { - "name": "contractId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "lastName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "activityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "createdAt" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "CalculatedField", - "id": "e7c4027c-6821-3b50-007f-b0ccb33035e5", - "name": "Top Acceptance Rate?", - "description": "Tests data for top ranked response rate. Right click and select edit for more info", - "upstreamColumns": [ - { - "name": "activityOutcomeType" - }, - { - "name": "activityType" - } - ], - "role": "MEASURE", - "dataType": "BOOLEAN", - "aggregation": null, - "formula": "// This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1" - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "upstreamColumns": [ - { - "name": "firstName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - } - ], - "dashboards": [ - { - "id": "03e74eaf-4fb0-4973-e555-ab90f9f8f265", - "name": "InMail Engagement", - "path": "InMailEngagement/InMailEngagement", - "createdAt": "2021-12-17T19:12:59Z", - "updatedAt": "2021-12-17T19:13:18Z", - "sheets": [ - { - "id": "091c8f7a-0b0d-a80a-9dac-9e2e699bff08", - "name": "Number of InMail Sent" - }, - { - "id": "0b359c2f-7d7d-3de8-77c8-f8be2fbacae5", - "name": "Tooltip: volume InMail sent vs accepted by time of day and weekday" - }, - { - "id": "0c58dcc2-89c5-5db3-7507-baceafd58d8a", - "name": "InMail Response Rate" - }, - { - "id": "32a31217-0d14-7251-8179-15f825ed24bc", - "name": "Tooltip: volume InMail sent vs accepted by time of day" - }, - { - "id": "3aaaa573-1a8d-7cc8-cb53-7b0123da92fd", - "name": "All Team Memeber Engagement" - }, - { - "id": "59975b4b-60d2-1795-be72-0c894824ae7e", - "name": "Weekday by time of day response rate heatmap" - }, - { - "id": "75c97c18-9277-795d-da22-f40c5c7d7dee", - "name": "InMail response rate by time of day" - }, - { - "id": "8dafd980-4072-705e-8a8d-5d7f162fdcd2", - "name": "Best Time to Send InMails" - }, - { - "id": "b8182e39-23c2-0ee0-72bb-3e2f390b6072", - "name": "InMail response by weekday" - }, - { - "id": "bc17caa4-58af-8eca-2bdc-6d4781cf98aa", - "name": "Tooltip: volume InMail sent vs accepted by weekday" - }, - { - "id": "c0b38367-f999-7c8f-5ce9-ff27ee01951a", - "name": "InMail Response Rate Timeline" - }, - { - "id": "f08c9444-4902-7fa2-b4c7-5539effee2a0", - "name": "Best Day to Send InMails" - } - ] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "69e215a8-0d95-7c01-9868-4d5b7e5b364f", - "name": "Sales Navigator Connection", - "hasExtracts": true, - "extractLastRefreshTime": "2019-01-19T00:37:24Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2019-01-19T00:37:24Z", - "upstreamDatabases": [ - { - "id": "fb22f0e0-b7db-862e-cb46-e536cb3afa8c", - "name": "Sales Navigator Connection", - "connectionType": "webdata-direct:linkedin-snap", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "64cb0577-9a7d-7c82-d29f-dd7172faefd4", - "name": "UniqueSeat", - "schema": "", - "fullName": "[UniqueSeat]", - "connectionType": "webdata-direct:linkedin-snap", - "description": "", - "columns": [ - { - "name": "ssiCreateProfessionalBrand", - "remoteType": "WDC_FLOAT" - }, - { - "name": "ssi", - "remoteType": "WDC_FLOAT" - }, - { - "name": "ssiBuildStrongRelationship", - "remoteType": "WDC_FLOAT" - }, - { - "name": "ssiFindRightPeople", - "remoteType": "WDC_FLOAT" - }, - { - "name": "createdAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "email", - "remoteType": "WDC_STRING" - }, - { - "name": "totalConnections", - "remoteType": "WDC_INT" - }, - { - "name": "contractId", - "remoteType": "WDC_INT" - }, - { - "name": "ssiEngageWithInsights", - "remoteType": "WDC_FLOAT" - }, - { - "name": "seatId", - "remoteType": "WDC_INT" - }, - { - "name": "firstName", - "remoteType": "WDC_STRING" - }, - { - "name": "recordedAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "lastName", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "7fe70648-4cb1-66be-bb15-d6f83ef028a1", - "name": "Activity", - "schema": "", - "fullName": "[Activity]", - "connectionType": "webdata-direct:linkedin-snap", - "description": "", - "columns": [ - { - "name": "createdAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "memberIdentityKey", - "remoteType": "WDC_STRING" - }, - { - "name": "activityType", - "remoteType": "WDC_STRING" - }, - { - "name": "seatId", - "remoteType": "WDC_INT" - }, - { - "name": "activityId", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "861d6e07-856c-2770-86b0-6703bcae2172", - "name": "ActivityOutcome", - "schema": "", - "fullName": "[ActivityOutcome]", - "connectionType": "webdata-direct:linkedin-snap", - "description": "", - "columns": [ - { - "name": "memberIdentityKey", - "remoteType": "WDC_STRING" - }, - { - "name": "activityOutcomeType", - "remoteType": "WDC_STRING" - }, - { - "name": "activityId", - "remoteType": "WDC_STRING" - }, - { - "name": "createdAt", - "remoteType": "WDC_DATETIME" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "187465cb-2419-3db5-3bd1-9bf1f6acd2e9", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "1c59c29c-95c9-cf5f-08a3-56ccd82430ef", - "name": "Total Connections", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "2b3713d5-fa00-91f6-a84d-bb6021b24c25", - "name": "Full Name", - "description": "A calculated field to bring together first and last names. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "formula": "// Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]" - }, - { - "__typename": "ColumnField", - "id": "2c3d403e-3dbc-2845-a7f6-52667b336d37", - "name": "Ssi Find Right People", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "2c88e452-ac93-e808-e9ec-6aca6984a26e", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "324a9ed8-aba1-3def-6b35-7125cfac509a", - "name": "Number of InMail Accepted", - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "32865d25-0d77-865d-bdd3-62c80d2b4f88", - "name": "Created At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "59d9e5fc-6651-339a-1d1a-aff1f3353662", - "name": "Seat Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "668353f2-6f36-2c6c-a31b-d22423babc14", - "name": "Created At (Activities Outcome)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6f10cc2a-e924-fee8-3493-f5587ccb7c42", - "name": "Activity Type (Activities Outcome)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6f642f14-93ee-b89c-adf9-43b9866f59c6", - "name": "Contract Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "72f19a89-2697-388d-e48d-bcc8e6924c2b", - "name": "Ssi Create Professional Brand", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "733f2275-1421-7cb8-ff44-0566a986669e", - "name": "Member Identity Key", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "73475ba7-dd5d-3918-156e-3a3153b843bd", - "name": "totalSavedLeads", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "7959a449-69c0-8682-30a2-f69acc23b7a3", - "name": "Migrated Data", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "855e8515-88a3-ff9c-c384-7df60f3bcecd", - "name": "Member Identity Key (Activities Outcome)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "917a9dfb-f026-f1d3-b533-01e0e04b49ba", - "name": "Last Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "934cb363-9ff7-0fdb-78dd-3476d59913b4", - "name": "Created At (local time)", - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "formula": "// This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])" - }, - { - "__typename": "CalculatedField", - "id": "a8a32554-a315-349c-7e30-bb5c24fefb4b", - "name": "Number of InMail Sent", - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "// this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND" - }, - { - "__typename": "ColumnField", - "id": "b7f82234-5ca7-d14c-9844-30585f677e6b", - "name": "Created At (Unique Seats)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ba58b759-96e4-a268-cb97-17836050ad8b", - "name": "Activity Id (Activities Outcome)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bf71c9db-1695-49e2-a1fc-5874a41d17d9", - "name": "Activity Type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c6327337-8d37-bb70-34d0-6fb5a81ee420", - "name": "Ssi", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c82b2949-5c9c-a48a-fcdc-a56753800374", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "CalculatedField", - "id": "ce79d4d9-06e9-4794-0c3a-d381d4911b18", - "name": "Time of Day", - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "formula": "// This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND" - }, - { - "__typename": "ColumnField", - "id": "d0359295-4ca2-0753-b5a4-b26a6d80f7d5", - "name": "Ssi Engage With Insights", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e1b8af7a-9aff-16d4-50bc-2fd9c79c6ef7", - "name": "totalSavedAccounts", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "CalculatedField", - "id": "e3ee39ba-009f-9199-406b-b743b2acf1fb", - "name": "InMail Acceptance Rate", - "description": "Calculates response rate. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "formula": "// sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])" - }, - { - "__typename": "CalculatedField", - "id": "e7c4027c-6821-3b50-007f-b0ccb33035e5", - "name": "Top Acceptance Rate?", - "description": "Tests data for top ranked response rate. Right click and select edit for more info", - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "formula": "// This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1" - }, - { - "__typename": "ColumnField", - "id": "eb983cc9-0a22-2b7e-8f10-093798083d16", - "name": "Email", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f28fbc42-0984-6390-2886-2eb355f21ac0", - "name": "Ssi Build Strong Relationship", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f297a4d0-22b9-adce-27c9-6e762e6126f7", - "name": "First Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f442fd06-4fc4-7723-cbe0-6747bf5663cb", - "name": "Activity Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f704ed53-ce8d-6f35-1706-297933b0724f", - "name": "Recorded At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f786ccb4-6139-7c60-5ff6-e51378b84645", - "name": "Seat Id (Unique Seats)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "InMail Engagement", - "projectName": "default" - } - } - ] - }, - { - "id": "a6c3a345-a85d-64ca-934f-e4049616cd27", - "name": "Email Performance in Project 2", - "luid": "79605466-4b6c-4d8c-b466-def4ae6d764f", - "projectName": "Project 2", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/15996", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2022-01-18T05:02:47Z", - "sheets": [ - { - "id": "1569379c-c55f-cbb1-2d56-99c257ffd2da", - "name": "Summary", - "path": "", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2022-01-18T05:02:47Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Email Performance by Campaign", - "path": "EmailPerformance/EmailPerformancebyCampaign" - } - ], - "upstreamDatasources": [ - { - "id": "23baba4e-08c4-bd26-debe-58bd03a0ca20", - "name": "Marketo" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0180da1a-7d74-dd49-4bbe-42c2a4894a0b", - "name": "Id", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "03132e2f-3ab0-3e0a-6629-7041a3f0bde6", - "name": "Clickthrough Emails", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Click Email)])" - }, - { - "__typename": "ColumnField", - "id": "0407ea82-53fd-fdab-152f-b93eeddb2b60", - "name": "ID", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "21e9f64d-1e0e-5565-4bb4-2074c0e25318", - "name": "Opened Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Open Email)])" - }, - { - "__typename": "ColumnField", - "id": "2a64fa56-7be9-98ee-d434-631914effe98", - "name": "Active", - "description": null, - "upstreamColumns": [ - { - "name": "active" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "4bef9b94-4a26-3b0c-53b5-d0d94597dd33", - "name": "Delivered Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Email Delivered)])" - }, - { - "__typename": "ColumnField", - "id": "51380696-dce4-3fac-bc06-52c56a75b133", - "name": "Id (Activity - Email Delivered)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "60bfe889-a790-c79c-ece7-498ce7f5e5b5", - "name": "Delivery Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Delivered Email]/[Sent Email])" - }, - { - "__typename": "CalculatedField", - "id": "62b9e1e2-f4ee-fe05-ca7b-8e2335cf8fa8", - "name": "Sent Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id])" - }, - { - "__typename": "CalculatedField", - "id": "6b75784a-ff0f-fdcc-81f0-b4c52a1191da", - "name": "Clickthrough Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "[Clickthrough Emails]/[Delivered Email]" - }, - { - "__typename": "ColumnField", - "id": "8c9abf24-594d-9435-235d-6c96b1313563", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "Activity_Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9b203f57-bb30-ac1b-ba43-d5da4dce4d6c", - "name": "Id (Activity - Open Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a47b6c4b-db9d-a82d-90d9-32cc4e3af6e0", - "name": "Program Name", - "description": null, - "upstreamColumns": [ - { - "name": "programName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "aa90b957-1c25-ce4d-9397-b87bc216c8af", - "name": "Id (Activity - Click Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c812c353-fb11-d351-60cf-32e6943ede7a", - "name": "Click-to-Open", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" - }, - { - "__typename": "ColumnField", - "id": "cf97dd58-7f59-14f8-0d97-8edd1a226417", - "name": "Name", - "description": null, - "upstreamColumns": [ - { - "name": "name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "e11dfe54-8a5d-f389-9899-e3442df6eb42", - "name": "Open Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Opened Email]/[Delivered Email])" - }, - { - "__typename": "ColumnField", - "id": "e3f1fd20-73e4-4684-661a-38c3fac10c12", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "fab28061-1afe-7d88-102b-18211c2ff4b0", - "name": "Measure Values", - "description": null, - "upstreamColumns": [], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - } - ] - }, - { - "id": "48105ce8-e907-377f-59bc-d2f36f57d670", - "name": "Campaign List", - "path": "", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2022-01-18T05:02:47Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Email Performance by Campaign", - "path": "EmailPerformance/EmailPerformancebyCampaign" - } - ], - "upstreamDatasources": [ - { - "id": "23baba4e-08c4-bd26-debe-58bd03a0ca20", - "name": "Marketo" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0180da1a-7d74-dd49-4bbe-42c2a4894a0b", - "name": "Id", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "03132e2f-3ab0-3e0a-6629-7041a3f0bde6", - "name": "Clickthrough Emails", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Click Email)])" - }, - { - "__typename": "ColumnField", - "id": "0407ea82-53fd-fdab-152f-b93eeddb2b60", - "name": "ID", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "21e9f64d-1e0e-5565-4bb4-2074c0e25318", - "name": "Opened Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Open Email)])" - }, - { - "__typename": "ColumnField", - "id": "2a64fa56-7be9-98ee-d434-631914effe98", - "name": "Active", - "description": null, - "upstreamColumns": [ - { - "name": "active" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "4bef9b94-4a26-3b0c-53b5-d0d94597dd33", - "name": "Delivered Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Email Delivered)])" - }, - { - "__typename": "ColumnField", - "id": "51380696-dce4-3fac-bc06-52c56a75b133", - "name": "Id (Activity - Email Delivered)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "60bfe889-a790-c79c-ece7-498ce7f5e5b5", - "name": "Delivery Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Delivered Email]/[Sent Email])" - }, - { - "__typename": "CalculatedField", - "id": "62b9e1e2-f4ee-fe05-ca7b-8e2335cf8fa8", - "name": "Sent Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id])" - }, - { - "__typename": "CalculatedField", - "id": "6b75784a-ff0f-fdcc-81f0-b4c52a1191da", - "name": "Clickthrough Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "[Clickthrough Emails]/[Delivered Email]" - }, - { - "__typename": "ColumnField", - "id": "8c9abf24-594d-9435-235d-6c96b1313563", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "Activity_Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9b203f57-bb30-ac1b-ba43-d5da4dce4d6c", - "name": "Id (Activity - Open Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a47b6c4b-db9d-a82d-90d9-32cc4e3af6e0", - "name": "Program Name", - "description": null, - "upstreamColumns": [ - { - "name": "programName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "aa90b957-1c25-ce4d-9397-b87bc216c8af", - "name": "Id (Activity - Click Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c812c353-fb11-d351-60cf-32e6943ede7a", - "name": "Click-to-Open", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" - }, - { - "__typename": "ColumnField", - "id": "cf97dd58-7f59-14f8-0d97-8edd1a226417", - "name": "Name", - "description": null, - "upstreamColumns": [ - { - "name": "name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "e11dfe54-8a5d-f389-9899-e3442df6eb42", - "name": "Open Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Opened Email]/[Delivered Email])" - } - ] - }, - { - "id": "5a63b6b2-d8cc-1cb2-6e14-ea872eba5d37", - "name": "Timeline - Sent", - "path": "", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2022-01-18T05:02:47Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Email Performance by Campaign", - "path": "EmailPerformance/EmailPerformancebyCampaign" - } - ], - "upstreamDatasources": [ - { - "id": "23baba4e-08c4-bd26-debe-58bd03a0ca20", - "name": "Marketo" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0180da1a-7d74-dd49-4bbe-42c2a4894a0b", - "name": "Id", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "0407ea82-53fd-fdab-152f-b93eeddb2b60", - "name": "ID", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2a64fa56-7be9-98ee-d434-631914effe98", - "name": "Active", - "description": null, - "upstreamColumns": [ - { - "name": "active" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "8c9abf24-594d-9435-235d-6c96b1313563", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "Activity_Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a47b6c4b-db9d-a82d-90d9-32cc4e3af6e0", - "name": "Program Name", - "description": null, - "upstreamColumns": [ - { - "name": "programName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "cf97dd58-7f59-14f8-0d97-8edd1a226417", - "name": "Name", - "description": null, - "upstreamColumns": [ - { - "name": "name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "fd1dec03-9c6d-d043-a18d-4f1fb05e093d", - "name": "Mobile - Sent by Campaign", - "path": "", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2022-01-18T05:02:47Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Email Performance by Campaign", - "path": "EmailPerformance/EmailPerformancebyCampaign" - } - ], - "upstreamDatasources": [ - { - "id": "23baba4e-08c4-bd26-debe-58bd03a0ca20", - "name": "Marketo" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0180da1a-7d74-dd49-4bbe-42c2a4894a0b", - "name": "Id", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "03132e2f-3ab0-3e0a-6629-7041a3f0bde6", - "name": "Clickthrough Emails", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Click Email)])" - }, - { - "__typename": "ColumnField", - "id": "0407ea82-53fd-fdab-152f-b93eeddb2b60", - "name": "ID", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "21e9f64d-1e0e-5565-4bb4-2074c0e25318", - "name": "Opened Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Open Email)])" - }, - { - "__typename": "CalculatedField", - "id": "4bef9b94-4a26-3b0c-53b5-d0d94597dd33", - "name": "Delivered Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id (Activity - Email Delivered)])" - }, - { - "__typename": "ColumnField", - "id": "51380696-dce4-3fac-bc06-52c56a75b133", - "name": "Id (Activity - Email Delivered)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "60bfe889-a790-c79c-ece7-498ce7f5e5b5", - "name": "Delivery Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Delivered Email]/[Sent Email])" - }, - { - "__typename": "CalculatedField", - "id": "62b9e1e2-f4ee-fe05-ca7b-8e2335cf8fa8", - "name": "Sent Email", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "COUNTD([Id])" - }, - { - "__typename": "ColumnField", - "id": "8c9abf24-594d-9435-235d-6c96b1313563", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "Activity_Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9b203f57-bb30-ac1b-ba43-d5da4dce4d6c", - "name": "Id (Activity - Open Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a47b6c4b-db9d-a82d-90d9-32cc4e3af6e0", - "name": "Program Name", - "description": null, - "upstreamColumns": [ - { - "name": "programName" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "aa90b957-1c25-ce4d-9397-b87bc216c8af", - "name": "Id (Activity - Click Email)", - "description": null, - "upstreamColumns": [ - { - "name": "id" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c812c353-fb11-d351-60cf-32e6943ede7a", - "name": "Click-to-Open", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" - }, - { - "__typename": "ColumnField", - "id": "cf97dd58-7f59-14f8-0d97-8edd1a226417", - "name": "Name", - "description": null, - "upstreamColumns": [ - { - "name": "name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "e11dfe54-8a5d-f389-9899-e3442df6eb42", - "name": "Open Rate", - "description": null, - "upstreamColumns": [ - { - "name": "id" - }, - { - "name": "id" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ZN([Opened Email]/[Delivered Email])" - } - ] - } - ], - "dashboards": [ - { - "id": "2897f2f9-2b5e-e3f6-a8f7-53e4b37a0b97", - "name": "Email Performance by Campaign", - "path": "EmailPerformance/EmailPerformancebyCampaign", - "createdAt": "2021-12-22T19:11:04Z", - "updatedAt": "2021-12-22T19:11:04Z", - "sheets": [ - { - "id": "1569379c-c55f-cbb1-2d56-99c257ffd2da", - "name": "Summary" - }, - { - "id": "48105ce8-e907-377f-59bc-d2f36f57d670", - "name": "Campaign List" - }, - { - "id": "5a63b6b2-d8cc-1cb2-6e14-ea872eba5d37", - "name": "Timeline - Sent" - }, - { - "id": "fd1dec03-9c6d-d043-a18d-4f1fb05e093d", - "name": "Mobile - Sent by Campaign" - } - ] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "23baba4e-08c4-bd26-debe-58bd03a0ca20", - "name": "Marketo", - "hasExtracts": true, - "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "upstreamDatabases": [ - { - "id": "38fcb647-d7d7-7495-439e-5e93dc3813d4", - "name": "Marketo", - "connectionType": "webdata-direct:marketo-marketo", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "24c59de2-dad7-082a-5495-853ccedafec0", - "name": "activity6", - "schema": "", - "fullName": "[activity6]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - } - ] - }, - { - "id": "443b5f95-0191-5b4a-b05e-6653a6b60f7d", - "name": "activity11", - "schema": "", - "fullName": "[activity11]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "User_Agent", - "remoteType": "WDC_STRING" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Device", - "remoteType": "WDC_STRING" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Is_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Is_Mobile_Device", - "remoteType": "WDC_BOOL" - }, - { - "name": "Link", - "remoteType": "WDC_STRING" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Platform", - "remoteType": "WDC_STRING" - }, - { - "name": "Link_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - } - ] - }, - { - "id": "9b6f6639-cbed-11ee-d301-52e51936e9e5", - "name": "campaignsTable", - "schema": "", - "fullName": "[campaignsTable]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "programName", - "remoteType": "WDC_STRING" - }, - { - "name": "programId", - "remoteType": "WDC_INT" - }, - { - "name": "createdAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "name", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "updatedAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "workspaceName", - "remoteType": "WDC_STRING" - }, - { - "name": "id", - "remoteType": "WDC_INT" - } - ] - }, - { - "id": "a65abce9-ea39-f602-6540-279dccad08cc", - "name": "activity10", - "schema": "", - "fullName": "[activity10]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "User_Agent", - "remoteType": "WDC_STRING" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Device", - "remoteType": "WDC_STRING" - }, - { - "name": "Platform", - "remoteType": "WDC_STRING" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Is_Mobile_Device", - "remoteType": "WDC_BOOL" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - } - ] - }, - { - "id": "aa244c22-b59f-4c2a-d062-82adef9c86a8", - "name": "activity7", - "schema": "", - "fullName": "[activity7]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "0180da1a-7d74-dd49-4bbe-42c2a4894a0b", - "name": "Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "03132e2f-3ab0-3e0a-6629-7041a3f0bde6", - "name": "Clickthrough Emails", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Click Email)])" - }, - { - "__typename": "ColumnField", - "id": "0407ea82-53fd-fdab-152f-b93eeddb2b60", - "name": "ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0a43cd14-79d7-b509-b4de-c7651c47781c", - "name": "Platform", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0ec13312-62be-35a0-d89e-327fc0c23a3b", - "name": "Step ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "11fdb828-70f9-f940-b032-71ee55a93d68", - "name": "Choice Number (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "14e83061-f7d1-ff0d-63f1-3c14481f9de0", - "name": "Test Variant (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "14eb21a1-bca4-5bc1-4e99-58986d0cda6b", - "name": "Link ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1a3c56a6-86bd-5a16-20f2-ee891c558c0b", - "name": "Lead ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "21e9f64d-1e0e-5565-4bb4-2074c0e25318", - "name": "Opened Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Open Email)])" - }, - { - "__typename": "ColumnField", - "id": "24787c11-4802-2193-08a0-68551c1bd0f9", - "name": "Campaign Run ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2a64fa56-7be9-98ee-d434-631914effe98", - "name": "Active", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2b79a31c-7a7c-275c-8617-0fb6791d1929", - "name": "Campaign ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "31f180f6-c97f-4dad-706d-16e38ffa31fd", - "name": "Platform (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "417cc4ef-b578-36d1-4287-aef37e73ba6f", - "name": "Device", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "47a824dc-4247-807b-f7aa-57891ffafd7b", - "name": "Is Mobile Device", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "4bef9b94-4a26-3b0c-53b5-d0d94597dd33", - "name": "Delivered Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Email Delivered)])" - }, - { - "__typename": "CalculatedField", - "id": "4d979d85-56f0-c99a-459d-a4ec1f1f5467", - "name": "Non Opened Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Delivered Email]-[Opened Email]" - }, - { - "__typename": "ColumnField", - "id": "51380696-dce4-3fac-bc06-52c56a75b133", - "name": "Id (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5447e0be-a4fc-1dd1-bec8-2ed08dd8b10c", - "name": "Step ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5c550f7a-4641-b921-a4a7-04d9039e5fa3", - "name": "Lead ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5c9c487d-13e8-8023-5cd0-41da5ebd04fc", - "name": "Campaign ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "60bfe889-a790-c79c-ece7-498ce7f5e5b5", - "name": "Delivery Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Delivered Email]/[Sent Email])" - }, - { - "__typename": "CalculatedField", - "id": "62b9e1e2-f4ee-fe05-ca7b-8e2335cf8fa8", - "name": "Sent Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id])" - }, - { - "__typename": "ColumnField", - "id": "6365326e-89a7-6ea7-80d5-4f000617dd0d", - "name": "Campaign ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6680f88e-0d18-9e2e-915d-c0c62e0884f4", - "name": "Has Predictive", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "685812b9-45b9-913d-bef7-b79016dca91b", - "name": "Choice Number", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "69217c9c-6550-7406-a42b-f9d596e28e25", - "name": "Workspace Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6af036b8-ce48-fe0b-aca1-3de1f136b4f6", - "name": "Activity Date (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "6b75784a-ff0f-fdcc-81f0-b4c52a1191da", - "name": "Clickthrough Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "[Clickthrough Emails]/[Delivered Email]" - }, - { - "__typename": "ColumnField", - "id": "6ec63a1d-9148-2dec-68de-402d441bf99b", - "name": "Campaign Run ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "71068448-c484-663b-eb29-3805c814b2f2", - "name": "Opened Non Clicked Emails", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Opened Email]-[Clickthrough Emails]" - }, - { - "__typename": "ColumnField", - "id": "71867977-cb3e-e6a7-77c7-c30211a713a0", - "name": "Migrated Data", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "770af132-84de-e0c1-8f29-af86e0cc1625", - "name": "Lead ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "790f4f4b-9835-7661-41ff-bdc25635a43b", - "name": "Choice Number (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "79857b04-2f61-3ac7-4962-44188a6a7542", - "name": "Description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7ac12c74-856a-b521-726c-f324a821fad1", - "name": "Step ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "7e9503a5-97bd-acb5-bd39-d7109e392417", - "name": "Non Clickthrough Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Delivered Email]-[Clickthrough Emails]" - }, - { - "__typename": "ColumnField", - "id": "848f27d7-1d07-0ce8-66df-084c38ce77cc", - "name": "Link", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "887e4e79-bb04-ebe3-693d-28cd1edc579a", - "name": "Activity Date (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89aab4de-58a2-f9a5-68b3-3a3909d90eab", - "name": "Test Variant", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8c9abf24-594d-9435-235d-6c96b1313563", - "name": "Activity Date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "905d9893-3c59-d38c-c4a6-28717af18ab7", - "name": "Test Variant (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "94db5480-e9ad-2143-9a3b-82348456bf25", - "name": "Updated At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "97c6ddaa-a982-23e0-bded-b8fc8eb7eb6a", - "name": "Is Predictive", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9af9bff9-ac2d-8aac-e3cd-0b1236bfb5c0", - "name": "Mailing ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9b203f57-bb30-ac1b-ba43-d5da4dce4d6c", - "name": "Id (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9c2bd0ee-09d5-1c2c-c373-6414ea2970e7", - "name": "Mailing ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a47b6c4b-db9d-a82d-90d9-32cc4e3af6e0", - "name": "Program Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a6ed47c5-6748-b478-fa8f-f3ea5cad9b71", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "a8241ad7-b54e-3366-1f3b-798a11f57f2e", - "name": "Step ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "aa90b957-1c25-ce4d-9397-b87bc216c8af", - "name": "Id (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ab0366bc-4073-c567-3393-f734fb597725", - "name": "Choice Number (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b3849219-b1a9-216e-bcc3-da5c19c3b96a", - "name": "Mailing ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b3ede554-eddc-9436-c401-fe12a2feef0c", - "name": "Has Predictive (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b4a4bea6-d772-84b3-d6e2-8eb1dc917b1d", - "name": "Lead ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bb3147b7-5b0b-6002-45a6-dfe065e10e98", - "name": "Device (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bff32fb8-11d3-a786-dc99-d9f45a26f95c", - "name": "Has Predictive (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c2812ace-94cc-3c30-12d3-e7097ce2354d", - "name": "Test Variant (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c392c2c3-c328-3613-c5a1-caad4b99de6c", - "name": "User Agent", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "c812c353-fb11-d351-60cf-32e6943ede7a", - "name": "Click-to-Open", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" - }, - { - "__typename": "ColumnField", - "id": "cb000c5a-93d0-809c-e0ef-5b7294e70ef8", - "name": "Campaign Run ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "cb226ef2-aefa-7d10-ad64-29004e8ddd47", - "name": "Bounceback", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Sent Email] - [Delivered Email]" - }, - { - "__typename": "ColumnField", - "id": "cf97dd58-7f59-14f8-0d97-8edd1a226417", - "name": "Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cfc09cd2-9ee6-0159-672f-2a0dfe0c3641", - "name": "Campaign Run ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d680a0c3-3475-f3df-c73f-4d8a3e76ddcc", - "name": "Mailing ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dab86203-8bf6-8f2e-1025-d9457e6c01af", - "name": "Created At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dc21c4ac-2c05-1e06-5d81-447509b64031", - "name": "Is Mobile Device (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e0359153-731e-edc5-3291-b8f26d66b259", - "name": "Activity Date (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "e11dfe54-8a5d-f389-9899-e3442df6eb42", - "name": "Open Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Opened Email]/[Delivered Email])" - }, - { - "__typename": "ColumnField", - "id": "e1e1748c-7003-69fc-d039-b992dd2650b9", - "name": "Program ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e2a5c4ac-9475-862f-47da-372a2c78d4fa", - "name": "User Agent (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e3f1fd20-73e4-4684-661a-38c3fac10c12", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "eec9302a-b9a8-78ca-ec32-350755af5955", - "name": "Campaign ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fab28061-1afe-7d88-102b-18211c2ff4b0", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Email Performance in Project 2", - "projectName": "Project 2" - } - } - ] - }, - { - "id": "b487ae25-e473-d8b3-eefb-8df8eecbc419", - "name": "Account Engagement", - "luid": "609ab30d-5113-4f26-9d33-1cb61ff1b4c1", - "projectName": "default", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/15626", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "sheets": [ - { - "id": "474d4fe3-8b71-15a6-f77d-9f2476f1a55d", - "name": "Hour", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "49d0dd61-5159-4bce-a6ea-c87ec194a82a", - "name": "Summary (2)", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "576b5eeb-73b7-11e6-194e-877ddc2addd0", - "name": "Measure Values", - "description": null, - "upstreamColumns": [], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "76c00efb-c3ff-1a81-60a1-8a549188576f", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c9e03086-8069-e467-15b6-adbaa432dd9f", - "name": "Total Web Visits", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - }, - { - "name": "ActivityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"webvisit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"WebVisit\"\r\nTHEN [Activity Id]\r\nEND)" - }, - { - "__typename": "CalculatedField", - "id": "db499415-9da7-7ba9-40dc-f43c4928c4c1", - "name": "Total Page Views", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - }, - { - "name": "ActivityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"pageview\"\r\n\r\nCOUNTD(IF [Activity Type]= \"PageView\"\r\nTHEN [Activity Id]\r\nEND)" - }, - { - "__typename": "CalculatedField", - "id": "f834307d-4adf-48e3-791b-5be5349207ee", - "name": "Total Forms Submitted", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - }, - { - "name": "ActivityType" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"formsubmit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"FormSubmit\"\r\nTHEN [Activity Id]\r\nEND)" - } - ] - }, - { - "id": "5e9fc696-cf8b-46f4-cdf6-f94b6372dd5a", - "name": "Control Activity Type", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "6993c2a5-23d4-324b-00b5-4ba529b70744", - "name": "Acct Engage Sheet", - "path": "AccountEngagement/Sheet10", - "createdAt": "2022-01-21T05:46:43Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "8421f93a-39ac-201c-4584-5d600adadfa9", - "name": "Activities", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "91ae8684-a735-a5cc-3a0b-8effba5d9c6a", - "name": "Title", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "94f36fc7-af96-c61d-761f-08bd3aeb7397", - "name": "Timeline of Activity", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "9f17eae4-e288-997a-0750-7b588c7ca6e7", - "name": "Contacts", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "4ddb1c4c-9efd-010c-cca3-ab23c2d49a95", - "name": "First and Last Name", - "description": null, - "upstreamColumns": [ - { - "name": "First_and_Last_Name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "b37b5bdf-c832-a3b0-840b-3e45ca4c34cd", - "name": "Weekday", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "d7fa541c-01d2-e6d7-b91e-c1a712a6538c", - "name": "Summary", - "path": "", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement" - } - ], - "upstreamDatasources": [ - { - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "upstreamColumns": [ - { - "name": "Industry" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "CalculatedField", - "id": "197a1680-c5f2-b119-bc6f-6b8c9a13f79c", - "name": "Contacts Total", - "description": null, - "upstreamColumns": [ - { - "name": "ContactID" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// It is a COUNTD expression\r\n// It returns the number of distinc contact IDs\r\n\r\nCOUNTD([Contact ID])" - }, - { - "__typename": "CalculatedField", - "id": "2a57242a-c524-45a7-6c09-0f6a4ecb22d3", - "name": "Activities per Contact", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - }, - { - "name": "ContactId" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "// It is an expression\r\n// It calculates the number of activities per contact\r\n\r\nCOUNTD([Activity Id])/COUNTD([Contact Id])" - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "576b5eeb-73b7-11e6-194e-877ddc2addd0", - "name": "Measure Values", - "description": null, - "upstreamColumns": [], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "599b8a83-febc-6208-62ee-63d8f604d326", - "name": "Activies Total", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityId" - } - ], - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "// It is a COUNTD expression\r\n// It returns the number of distinc activity IDs\r\n\r\nCOUNTD([Activity Id])" - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "76c00efb-c3ff-1a81-60a1-8a549188576f", - "name": "Measure Names", - "description": null, - "upstreamColumns": [], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityType" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "upstreamColumns": [ - { - "name": "ActivityDate" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "df990c11-28e4-1817-e6e1-16235cc18ffe", - "name": "Contact Id", - "description": null, - "upstreamColumns": [ - { - "name": "ContactId" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f14c520a-358c-928c-42c8-b7f89249c7c8", - "name": "Contact ID", - "description": null, - "upstreamColumns": [ - { - "name": "ContactID" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": null - } - ] - } - ], - "dashboards": [ - { - "id": "837471b1-5105-d533-b3c6-0f0f06a4ab8e", - "name": "Account Engagement", - "path": "AccountEngagement/AccountEngagement", - "createdAt": "2021-12-17T21:12:16Z", - "updatedAt": "2022-01-21T05:47:12Z", - "sheets": [ - { - "id": "474d4fe3-8b71-15a6-f77d-9f2476f1a55d", - "name": "Hour" - }, - { - "id": "49d0dd61-5159-4bce-a6ea-c87ec194a82a", - "name": "Summary (2)" - }, - { - "id": "5e9fc696-cf8b-46f4-cdf6-f94b6372dd5a", - "name": "Control Activity Type" - }, - { - "id": "8421f93a-39ac-201c-4584-5d600adadfa9", - "name": "Activities" - }, - { - "id": "91ae8684-a735-a5cc-3a0b-8effba5d9c6a", - "name": "Title" - }, - { - "id": "94f36fc7-af96-c61d-761f-08bd3aeb7397", - "name": "Timeline of Activity" - }, - { - "id": "9f17eae4-e288-997a-0750-7b588c7ca6e7", - "name": "Contacts" - }, - { - "id": "b37b5bdf-c832-a3b0-840b-3e45ca4c34cd", - "name": "Weekday" - }, - { - "id": "d7fa541c-01d2-e6d7-b91e-c1a712a6538c", - "name": "Summary" - } - ] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "5d799114-ac20-cff0-ddea-705dabba7856", - "name": "Oracle Eloqua", - "hasExtracts": true, - "extractLastRefreshTime": "2017-12-28T18:43:34Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2017-12-28T18:43:34Z", - "upstreamDatabases": [ - { - "id": "4d507507-96f3-70b0-f293-84a16af66592", - "name": "Oracle Eloqua", - "connectionType": "webdata-direct:oracle-eloqua", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "7ae64481-cbe8-1c93-c058-ba0baa2a02be", - "name": "activitiesAll", - "schema": "", - "fullName": "[activitiesAll]", - "connectionType": "webdata-direct:oracle-eloqua", - "description": "", - "columns": [ - { - "name": "ExternalId", - "remoteType": "WDC_STRING" - }, - { - "name": "NumberOfPages", - "remoteType": "WDC_INT" - }, - { - "name": "RawData", - "remoteType": "WDC_STRING" - }, - { - "name": "IsWebTrackingOptedIn", - "remoteType": "WDC_STRING" - }, - { - "name": "Url", - "remoteType": "WDC_STRING" - }, - { - "name": "VisitorExternalId", - "remoteType": "WDC_STRING" - }, - { - "name": "ReferrerUrl", - "remoteType": "WDC_STRING" - }, - { - "name": "FirstPageViewUrl", - "remoteType": "WDC_STRING" - }, - { - "name": "EmailAddress", - "remoteType": "WDC_STRING" - }, - { - "name": "AssetType", - "remoteType": "WDC_STRING" - }, - { - "name": "EmailRecipientId", - "remoteType": "WDC_STRING" - }, - { - "name": "VisitorId", - "remoteType": "WDC_INT" - }, - { - "name": "EmailClickedThruLink", - "remoteType": "WDC_STRING" - }, - { - "name": "Duration", - "remoteType": "WDC_STRING" - }, - { - "name": "SubjectLine", - "remoteType": "WDC_STRING" - }, - { - "name": "DeploymentId", - "remoteType": "WDC_INT" - }, - { - "name": "ActivityDate", - "remoteType": "WDC_DATETIME" - }, - { - "name": "IpAddress", - "remoteType": "WDC_STRING" - }, - { - "name": "AssetId", - "remoteType": "WDC_INT" - }, - { - "name": "WebVisitId", - "remoteType": "WDC_INT" - }, - { - "name": "EmailWebLink", - "remoteType": "WDC_STRING" - }, - { - "name": "ActivityId", - "remoteType": "WDC_INT" - }, - { - "name": "AssetName", - "remoteType": "WDC_STRING" - }, - { - "name": "ContactId", - "remoteType": "WDC_INT" - }, - { - "name": "CampaignId", - "remoteType": "WDC_INT" - }, - { - "name": "EmailSendType", - "remoteType": "WDC_STRING" - }, - { - "name": "ActivityType", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "d22cf370-1080-7814-f27f-2f86975df3d8", - "name": "contacts", - "schema": "", - "fullName": "[contacts]", - "connectionType": "webdata-direct:oracle-eloqua", - "description": "", - "columns": [ - { - "name": "Email_Address_Domain", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Login", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Appointment", - "remoteType": "WDC_STRING" - }, - { - "name": "Student_Verification", - "remoteType": "WDC_STRING" - }, - { - "name": "Permission_Medium", - "remoteType": "WDC_STRING" - }, - { - "name": "Record_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "Salesnet_OwnerID", - "remoteType": "WDC_STRING" - }, - { - "name": "NetSuite_Contact_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Customer", - "remoteType": "WDC_STRING" - }, - { - "name": "db_annual_sales", - "remoteType": "WDC_FLOAT" - }, - { - "name": "zzLead_Score__TEST", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Form_Submission", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Partner_Agreement_on_File", - "remoteType": "WDC_STRING" - }, - { - "name": "Remarket_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "LS__High_Value_Website_Content", - "remoteType": "WDC_FLOAT" - }, - { - "name": "db_sic", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Score", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Parent_Account", - "remoteType": "WDC_STRING" - }, - { - "name": "Create_Lead_Hold", - "remoteType": "WDC_STRING" - }, - { - "name": "referring_keyword", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Score_Date__Most_Recent", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Remarket_Details", - "remoteType": "WDC_STRING" - }, - { - "name": "Marketing_Opt_Out__For_Harvested_Names", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Source_Detail__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Email_Display_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "Account_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "Processing_Control", - "remoteType": "WDC_STRING" - }, - { - "name": "Campaign_ID__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Webinar_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Global_Parent", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_SFDC_Campaign_Status", - "remoteType": "WDC_STRING" - }, - { - "name": "Campaign_ID__Original", - "remoteType": "WDC_STRING" - }, - { - "name": "First_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "job_level", - "remoteType": "WDC_STRING" - }, - { - "name": "MSLA_on_File", - "remoteType": "WDC_STRING" - }, - { - "name": "AWS_AccountID", - "remoteType": "WDC_STRING" - }, - { - "name": "TAE", - "remoteType": "WDC_STRING" - }, - { - "name": "Slice_Last_Modified_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Eloqua_Slice_Score", - "remoteType": "WDC_FLOAT" - }, - { - "name": "ProServ_Opportunty_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "db_sub_industry", - "remoteType": "WDC_STRING" - }, - { - "name": "Teleteam_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Contact_Us_Request_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Annual_Sales", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Territory", - "remoteType": "WDC_STRING" - }, - { - "name": "TFT_Course_Expiration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Why_Remarket", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Rating__Last_SPOI", - "remoteType": "WDC_STRING" - }, - { - "name": "MSCRM_Contact_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Total_Employees_Indicator", - "remoteType": "WDC_STRING" - }, - { - "name": "TShirt_Size", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Record_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "Industry", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDCContactID", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_Contact_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "db_web_site", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Source_Detail__Original", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDC_Date_Created", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Do_Not_Process", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Siebel_OnDemand_Account_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Established_In", - "remoteType": "WDC_STRING" - }, - { - "name": "Trial_Exp_Date__Most_Recent", - "remoteType": "WDC_DATETIME" - }, - { - "name": "IDNumber", - "remoteType": "WDC_STRING" - }, - { - "name": "NetSuite_Lead_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "MD5_Hashed_Mobile_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Address_1", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDCTerritoryID", - "remoteType": "WDC_STRING" - }, - { - "name": "Salesperson_Email", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Visit_Date_and_Time", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_Program", - "remoteType": "WDC_STRING" - }, - { - "name": "Department", - "remoteType": "WDC_STRING" - }, - { - "name": "Standard_Form", - "remoteType": "WDC_STRING" - }, - { - "name": "Master_Asset__temp", - "remoteType": "WDC_STRING" - }, - { - "name": "Partner_Point_of_Contact", - "remoteType": "WDC_STRING" - }, - { - "name": "db_state", - "remoteType": "WDC_STRING" - }, - { - "name": "Device", - "remoteType": "WDC_STRING" - }, - { - "name": "SalesnetAccountID", - "remoteType": "WDC_STRING" - }, - { - "name": "Referring_Website", - "remoteType": "WDC_STRING" - }, - { - "name": "Name_Analyzer__Gender_Results", - "remoteType": "WDC_STRING" - }, - { - "name": "First_Login", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Nurture_Track", - "remoteType": "WDC_STRING" - }, - { - "name": "Address_3", - "remoteType": "WDC_STRING" - }, - { - "name": "db_industry", - "remoteType": "WDC_STRING" - }, - { - "name": "SalesnetContactID", - "remoteType": "WDC_STRING" - }, - { - "name": "Customer_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Microsoft_Custom_URL", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Rating__Historical_AllTime_HAT", - "remoteType": "WDC_STRING" - }, - { - "name": "Channel_Manager_Email", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Score__Historical_AllTime_HAT", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Author_Profiles__URL", - "remoteType": "WDC_STRING" - }, - { - "name": "db_employee_count", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Comment_2", - "remoteType": "WDC_STRING" - }, - { - "name": "MS_CRM_Account_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Website_Visit_Date_and_Time", - "remoteType": "WDC_DATETIME" - }, - { - "name": "License_Key_Offline_Activation", - "remoteType": "WDC_STRING" - }, - { - "name": "CIBC__Trial_Portal__TPEP__20150218", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Industry", - "remoteType": "WDC_STRING" - }, - { - "name": "Data_Geek_Profile", - "remoteType": "WDC_STRING" - }, - { - "name": "adgroup", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Source__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_Slice_Hash", - "remoteType": "WDC_STRING" - }, - { - "name": "Subscription_Page_Link", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDCLeadID", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDC_Lead_Rating", - "remoteType": "WDC_STRING" - }, - { - "name": "Trial_Product__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Viz_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Stage", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Business_Structure", - "remoteType": "WDC_STRING" - }, - { - "name": "Total_Pages", - "remoteType": "WDC_STRING" - }, - { - "name": "Mobile_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Country", - "remoteType": "WDC_STRING" - }, - { - "name": "SalesLogix_Contact_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Date_Created", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Last_SFDC_Campaign_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Adused", - "remoteType": "WDC_STRING" - }, - { - "name": "Optin_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "OptIn", - "remoteType": "WDC_STRING" - }, - { - "name": "SHA256_Hashed_Email_Address", - "remoteType": "WDC_STRING" - }, - { - "name": "Company", - "remoteType": "WDC_STRING" - }, - { - "name": "Qualifying_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Last_SFDC_Campaign_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "Online_Trial_Exp_Date__Most_Recent", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Session", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Score_247", - "remoteType": "WDC_STRING" - }, - { - "name": "Platform", - "remoteType": "WDC_STRING" - }, - { - "name": "Server_Trial_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "Fax", - "remoteType": "WDC_STRING" - }, - { - "name": "SFDC_EmailOptOut", - "remoteType": "WDC_STRING" - }, - { - "name": "Annual_Revenue", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Source__Original", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "Student_Verification_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "email_notification", - "remoteType": "WDC_STRING" - }, - { - "name": "Address_2", - "remoteType": "WDC_STRING" - }, - { - "name": "TAC", - "remoteType": "WDC_STRING" - }, - { - "name": "SalesLogix_Account_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Slice_Score", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Last_Email_Received_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Siebel_OnDemand_Lead_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Date_Modified", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Keyword__Original", - "remoteType": "WDC_STRING" - }, - { - "name": "Salesperson", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Doing_Business_As", - "remoteType": "WDC_STRING" - }, - { - "name": "Reason_Primed__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "distribution", - "remoteType": "WDC_STRING" - }, - { - "name": "MD5_Hashed_Email_Address", - "remoteType": "WDC_STRING" - }, - { - "name": "Job_Role", - "remoteType": "WDC_STRING" - }, - { - "name": "Buy_Registration_Date__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Deleted_Contact_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Dept", - "remoteType": "WDC_STRING" - }, - { - "name": "External_Notification_Email", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Comment_3", - "remoteType": "WDC_STRING" - }, - { - "name": "Authorized_User_Check_on_Contact", - "remoteType": "WDC_STRING" - }, - { - "name": "First_and_Last_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "referring_source", - "remoteType": "WDC_STRING" - }, - { - "name": "Website", - "remoteType": "WDC_STRING" - }, - { - "name": "Server_Trial_End_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "SheerID_Manual_Verification", - "remoteType": "WDC_STRING" - }, - { - "name": "SHA256_Hashed_Mobile_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Salutation", - "remoteType": "WDC_STRING" - }, - { - "name": "Total_Visits", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Status", - "remoteType": "WDC_STRING" - }, - { - "name": "Partner_TSI_Birthday", - "remoteType": "WDC_DATETIME" - }, - { - "name": "ContactID", - "remoteType": "WDC_INT" - }, - { - "name": "No_Promo", - "remoteType": "WDC_STRING" - }, - { - "name": "Student_Verification_Status", - "remoteType": "WDC_STRING" - }, - { - "name": "Confidence_Level", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Company_Size", - "remoteType": "WDC_STRING" - }, - { - "name": "Deleted_Lead_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Online_Trial_Start_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "DB_DUNS_Number", - "remoteType": "WDC_STRING" - }, - { - "name": "Business_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Buying_Horizon", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_CEO_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "Owner", - "remoteType": "WDC_STRING" - }, - { - "name": "Account_Partner_Agreement_Status", - "remoteType": "WDC_STRING" - }, - { - "name": "Keyword__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "HAT_Rating", - "remoteType": "WDC_STRING" - }, - { - "name": "TQL_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Account_User_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "Comment__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "State_or_Province", - "remoteType": "WDC_STRING" - }, - { - "name": "Referrs_Name", - "remoteType": "WDC_STRING" - }, - { - "name": "RBC__Trial_Portal__TPEP__20150218", - "remoteType": "WDC_STRING" - }, - { - "name": "Language_Site__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "SHA256_Hashed_Business_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Trial_Task_Exclusion", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Browser_Language__Most_Recent", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Campaign", - "remoteType": "WDC_STRING" - }, - { - "name": "StrikeIron_Country", - "remoteType": "WDC_STRING" - }, - { - "name": "Slice_Score__Enterprise", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Email_Address", - "remoteType": "WDC_STRING" - }, - { - "name": "Account_Owner", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_GUID", - "remoteType": "WDC_STRING" - }, - { - "name": "Open_Grade", - "remoteType": "WDC_FLOAT" - }, - { - "name": "Contact_Owner_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Preferred_Language", - "remoteType": "WDC_STRING" - }, - { - "name": "Zip_or_Postal_Code", - "remoteType": "WDC_STRING" - }, - { - "name": "Area_Of_Interest", - "remoteType": "WDC_STRING" - }, - { - "name": "Comment_1", - "remoteType": "WDC_STRING" - }, - { - "name": "Title", - "remoteType": "WDC_STRING" - }, - { - "name": "Known_User", - "remoteType": "WDC_STRING" - }, - { - "name": "Channel_Manager", - "remoteType": "WDC_STRING" - }, - { - "name": "Partner_Program_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_Slice_Modified_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Account_Partner_Program_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "NNC", - "remoteType": "WDC_STRING" - }, - { - "name": "Eloqua_Slice_Score__Enterprise", - "remoteType": "WDC_FLOAT" - }, - { - "name": "TC14_Confirmation_Code__Attendees", - "remoteType": "WDC_STRING" - }, - { - "name": "Trial_Start_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Company_Revenue", - "remoteType": "WDC_STRING" - }, - { - "name": "Trial_Request", - "remoteType": "WDC_STRING" - }, - { - "name": "Asset", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Owner_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Account_Password", - "remoteType": "WDC_STRING" - }, - { - "name": "Highest_Stage", - "remoteType": "WDC_STRING" - }, - { - "name": "MD5_Hashed_Business_Phone", - "remoteType": "WDC_STRING" - }, - { - "name": "Permission_Source", - "remoteType": "WDC_STRING" - }, - { - "name": "db_zip", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Type", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Annual_Sales_Indicator", - "remoteType": "WDC_STRING" - }, - { - "name": "db_title", - "remoteType": "WDC_STRING" - }, - { - "name": "db_country", - "remoteType": "WDC_STRING" - }, - { - "name": "Name_Analyzer__Validation_Results", - "remoteType": "WDC_STRING" - }, - { - "name": "Siebel_OnDemand_Contact_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Primed_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Analysis_Types", - "remoteType": "WDC_STRING" - }, - { - "name": "BrightTALK_User_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "City", - "remoteType": "WDC_STRING" - }, - { - "name": "Last_Modified_by_CRM_System", - "remoteType": "WDC_DATETIME" - }, - { - "name": "DB_SIC_Code", - "remoteType": "WDC_STRING" - }, - { - "name": "ESD_Access_on_Contact", - "remoteType": "WDC_STRING" - }, - { - "name": "Permission_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "SFDCAccountID", - "remoteType": "WDC_STRING" - }, - { - "name": "Sensitivity", - "remoteType": "WDC_STRING" - }, - { - "name": "Slice_Prime_Exclude", - "remoteType": "WDC_STRING" - }, - { - "name": "Contacting_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "High_Touch", - "remoteType": "WDC_STRING" - }, - { - "name": "DB_Total_Employees", - "remoteType": "WDC_FLOAT" - }, - { - "name": "MSCRM_Lead_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Analysis_Software_Used", - "remoteType": "WDC_STRING" - }, - { - "name": "PURL_Name_Try", - "remoteType": "WDC_STRING" - }, - { - "name": "Bizo_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Account_Contact_Role", - "remoteType": "WDC_STRING" - }, - { - "name": "NetSuite_Company_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Evaluation_Team_Size", - "remoteType": "WDC_STRING" - }, - { - "name": "Lead_Score__TEST", - "remoteType": "WDC_FLOAT" - }, - { - "name": "SIC_Code", - "remoteType": "WDC_STRING" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "015380c1-3e46-5ffb-864e-dfe3a42e3840", - "name": "SFDC Lead Rating", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "02012179-497e-eee6-91d9-28f3673ef193", - "name": "Adgroup", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "03974bcd-2c16-bf76-ba35-4bc706a3e31a", - "name": "Industry", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "03dfa4df-5582-ac07-472c-b39d2b331e05", - "name": "LS - High Value Website Content", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "03ee9ee9-71c9-8749-5753-72418bc663ad", - "name": "Eloqua Slice Score", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "04a27927-bedb-9de9-b92b-ebb2357d7c0c", - "name": "Record Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "050ce6b5-50e4-c255-6c76-149dca312762", - "name": "Fax", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "052c8381-39bc-792e-0c12-3144a6c202d1", - "name": "Webinar ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "054137f7-62a9-f06c-b5e2-49313affb2b9", - "name": "MSCRM Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "06c9b5d1-4239-91c1-62f5-4ab72300bf56", - "name": "Processing Control", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0b7ebc03-2fd1-a09d-1f6a-6d896bbab237", - "name": "External Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0c19fb6c-53de-24d9-f432-2ac3d35c7397", - "name": "Student Verification Status", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0cb2a52b-6822-2bac-7593-ddb24835dcd0", - "name": "PURL Name (Try)", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0cdb8810-e327-8528-c9fa-d58149be9490", - "name": "Total Pages", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0f1858e5-815d-dbc1-92e4-50b3980947e6", - "name": "Channel Manager Email", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "10e723ae-68e4-583e-8afa-6aeddff9f087", - "name": "Last SFDC Campaign Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "11d41c78-5182-09cb-1fff-042e590d0084", - "name": "Total Visits", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "11d59772-d5cd-3ca4-03fc-67aaf7c52c60", - "name": "Eloqua Program", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "12b08255-455e-3e28-74b9-7fa4133bbb71", - "name": "SHA256 Hashed Email Address", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "13088815-b20a-1928-01cf-d7e695456900", - "name": "Campaign ID - Original", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "149c5d8c-f181-e1e1-bfb6-124cac17bd4c", - "name": "Authorized User Check on Contact", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15568ea3-966c-59ea-703d-f495bc2ec00a", - "name": "SFDC Territory ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "180c6122-0434-22f0-bd72-d9dc0a76581b", - "name": "T-Shirt Size", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1862db87-fdbb-fd78-35e7-4c040d98daa6", - "name": "Lead Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "197a1680-c5f2-b119-bc6f-6b8c9a13f79c", - "name": "Contacts Total", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "// It is a COUNTD expression\r\n// It returns the number of distinc contact IDs\r\n\r\nCOUNTD([Contact ID])" - }, - { - "__typename": "ColumnField", - "id": "19dcfd77-3621-b723-430c-d8fae6f58858", - "name": "Trial Start Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1d3294b1-4522-68f2-6697-9302fa2c6cbb", - "name": "Email Address Domain", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1d425001-693d-1064-1a39-5f064d10892e", - "name": "Db Web Site", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1ddbbcb4-c552-233b-784c-b1c48d7c2935", - "name": "Eloqua Slice Hash", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1e7ef9c0-5323-51dc-29f5-8a58be26a475", - "name": "Db Country", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1ea1d7ae-47ec-e1e9-ac7b-7a0fda061587", - "name": "Evaluation Team Size", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1f0c3c43-bd28-eaf1-3124-e32d95ada2da", - "name": "Asset Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1f1ca758-c9ea-ea7b-f779-191d4c620b56", - "name": "Student Verification", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1fcf0387-e31e-b8e5-bdc9-a31d5a7644f3", - "name": "D&B CEO Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2147b28a-2c9c-3358-f071-5a4d4d4cd51d", - "name": "Lead Source - Original", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2223858f-aaa0-24fa-ce80-e51f03174df8", - "name": "Partner Point of Contact", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "225cf480-4629-799d-8d72-08598ac02952", - "name": "SIC Code", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "22cef2f1-36fc-a9ea-4de0-53e414298d74", - "name": "Primed Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "239eb5e4-6061-1dc9-f81c-f1e7daa1954d", - "name": "Address 3", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "24ab7cf0-6fb8-ee0b-7a4b-5346198d6fed", - "name": "Salesperson", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "25b76c4c-7908-4f58-4dba-05a5b9ce20ff", - "name": "HAT Rating", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "25bd15e2-09b5-df15-d084-9031ea392b34", - "name": "Global Parent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2659b9ca-6264-22e0-1d95-3e11b4595055", - "name": "Zip or Postal Code", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "278ea485-e6e4-842f-3d1b-e0af1dddae4d", - "name": "Permission Source", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "280ef1c8-3ad0-bba5-e740-2ea48fd7fdfc", - "name": "Account Contact Role", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "289c218e-0bef-85b5-b7dc-ce94d92a7d6e", - "name": "First Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "29ff4135-f37b-cd27-206f-fd5966997b43", - "name": "Email Display Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "2a57242a-c524-45a7-6c09-0f6a4ecb22d3", - "name": "Activities per Contact", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n#,##0.0;-#,##0.0", - "aggregation": null, - "formula": "// It is an expression\r\n// It calculates the number of activities per contact\r\n\r\nCOUNTD([Activity Id])/COUNTD([Contact Id])" - }, - { - "__typename": "ColumnField", - "id": "2afea2ab-5d92-0ec7-4a89-285d3e8eca53", - "name": "Duration", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2c3bb234-a962-3591-e356-c4d01fd3a474", - "name": "Account Partner Agreement Status", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2c7db4bb-0c63-78dc-52a5-9586d1b215e8", - "name": "Parent Account", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2f484d7d-507d-ebc9-2c42-e557bd4f1174", - "name": "Db Zip", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2f591783-b73d-8931-52d6-56812d0794e5", - "name": "Email Web Link", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "32708c25-0c85-ef62-1eb4-9a16875069ef", - "name": "Last Email Received Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "33b15e31-665e-c8fe-6819-959b2afab4e8", - "name": "Account User Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "353143cd-b51d-c122-ae16-d8e784cd3a95", - "name": "Email Address", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3646a22e-ba53-9e46-d3df-06aee8165fc6", - "name": "Country", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "36638a7e-26e6-06bf-cb09-42f4d2d540fb", - "name": "City", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3713034e-95ac-f7c3-32d1-72f13b00da8e", - "name": "Activity Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "374868bc-a957-84f6-8b6f-38116379f203", - "name": "Online Trial Start Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "378d7935-4725-36ae-f54a-6e4ae83be7dc", - "name": "Trial Request", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "38e3bd19-dd90-8c2b-200c-88004bb19f79", - "name": "Annual Revenue", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "39f0f094-46b4-949d-b82a-75bcf5c8f095", - "name": "SFDC Date Created", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3a8cfdec-0b9c-4b13-1f39-b86f6deef7f6", - "name": "Buy Registration Date - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3ce9b0ce-16e1-97e7-0af8-a6a038a13cda", - "name": "Distribution", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3daf2b01-77c7-2cf7-c9a0-7922691d02e4", - "name": "Referring Source", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3eeea607-9c55-b505-7d96-331c57c92292", - "name": "Campaign Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "411bdd85-4347-4b66-03d7-328ad53840ff", - "name": "Subject Line", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "41466272-9152-7aff-ed4f-440e2cb5e65b", - "name": "Job Role", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4225d9d2-81a6-af97-de8a-1851409295da", - "name": "Platform", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4788219b-575a-f932-a1d7-d8adfe1a9887", - "name": "Siebel OnDemand Lead ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "47ffb6b5-8206-6cc6-47d7-22926525790b", - "name": "Customer Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4843ef9b-d1b0-c006-d665-2b85d5fbb4f4", - "name": "MD5 Hashed Business Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "491c11f8-809d-2402-21f8-55204b5ac863", - "name": "Data Geek Profile", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4a1da6df-00e2-47e8-3183-ee0f2bc26057", - "name": "TAC", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4b57b624-65df-6596-46c9-ae7632694119", - "name": "TFT Course Expiration", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4bc447d8-0fc0-3afa-a359-fa3dafa99773", - "name": "Name Analyzer - Gender Results", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4bcfdbad-4dbe-01ca-8942-29476990ead3", - "name": "Last SFDC Campaign ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4d11c356-aab6-bea2-c118-e664fe8bb011", - "name": "Number Of Pages", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4d13263e-35de-e715-8972-8e80adeb6792", - "name": "ProServ Opportunty ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4dc96095-81fe-7ef2-ae17-91870b1ced9a", - "name": "Lead Score (Contacts)", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4ddb1c4c-9efd-010c-cca3-ab23c2d49a95", - "name": "First and Last Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4f49b7e1-deec-b0ba-556d-88d4e72788e2", - "name": "zzLead Score - TEST", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "502ae230-70e0-702e-86e7-3e95ae9ce4b3", - "name": "Slice Last Modified Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "50eb28fe-4d41-bb7a-2a18-9bbbd701eee2", - "name": "BrightTALK User ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "51065e59-9635-0863-9527-c0cb072014cd", - "name": "Contacting Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5267e960-ea2e-73af-2995-48752df70000", - "name": "Eloqua Slice Score - Enterprise", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "52a77169-0208-1102-3a9c-4c558e7fdef1", - "name": "D&B SIC Code", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "537039fa-f538-a3dd-f20b-2a525dd728b6", - "name": "Confidence Level", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "53faef1e-6103-b04c-a1fe-c32beeb33146", - "name": "Last Form Submission", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "53fec5fa-b382-2f58-f753-6608a46ecdde", - "name": "Partner Program Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5447c496-0fa6-af3f-2072-9bda2ee91727", - "name": "Salesnet Account ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "54ab7783-f112-f873-0931-9d1c174bac6d", - "name": "Device", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5547d646-cd5f-ab63-517c-b4eb30b506a8", - "name": "Lead Source Detail - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "557833e0-b8d4-420f-24f7-cf5636001da2", - "name": "CIBC - Trial Portal - TPEP - 2015-02-18", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "56a08016-bf27-2c03-19b3-012b13cf4b5a", - "name": "Email Address", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "576b5eeb-73b7-11e6-194e-877ddc2addd0", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "5847e445-7436-0f4d-968c-ff4f2055593f", - "name": "SHA256 Hashed Mobile Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "589e242b-1118-f58f-7826-107259190a1a", - "name": "Server Trial End Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "598a86c7-9285-c243-4c10-1ac43641af5e", - "name": "Account Owner", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "599b8a83-febc-6208-62ee-63d8f604d326", - "name": "Activies Total", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "// It is a COUNTD expression\r\n// It returns the number of distinc activity IDs\r\n\r\nCOUNTD([Activity Id])" - }, - { - "__typename": "ColumnField", - "id": "5b84cac1-eaa4-0168-2abc-9102f14afd0d", - "name": "Why Remarket?", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5bda59e4-b763-274c-da53-4d456d7d523f", - "name": "D&B Established In", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "5c8bc98f-066c-017f-52d2-12c46e8ebc31", - "name": "Number of Records", - "description": null, - "isHidden": true, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "5d7c886c-f7b7-d107-4553-6c4b3c50a32f", - "name": "Is Web Tracking Opted In", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5df994f4-b798-35ef-2945-223ed7eaf5d1", - "name": "Company", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5f0a8284-8d7c-a62c-f70d-eb3798f0e1d9", - "name": "D&B Total Employees Indicator", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5fd6ab02-0c12-1ff7-d1d7-461a66e5b6e9", - "name": "Email Notification", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "61b6a99e-b571-f3d0-44f6-d22d5f31252b", - "name": "Contact ID EXT", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "644c0714-ba82-155a-c027-c6bb8ec75fce", - "name": "Raw Data", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "645878fb-00dd-1858-46c2-56505378f84e", - "name": "D&B Annual Sales Indicator", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "64e5fd0c-e213-baaa-3927-b415cc3399ec", - "name": "Salutation", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "66f21269-eab5-cc64-be67-7b0890228a1e", - "name": "RBC - Trial Portal - TPEP - 2015-02-18", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "673d4c0e-19ab-8537-6260-d03f05428d1d", - "name": "Remarket Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "674839ea-1019-a0cf-d7c4-b57493b987e5", - "name": "Area Of Interest", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6825bba3-3d59-6731-3996-6de3c014a928", - "name": "License Key Offline Activation", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6859751b-1797-e811-34cc-d1f9af037b16", - "name": "Migrated Data", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "69768ace-55eb-2cd5-a17c-c8de2481ef85", - "name": "D&B Industry", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6ac932f5-4869-a177-e1d8-d2e026657c4e", - "name": "Channel Manager", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6ad87d5d-1dd8-a132-b640-2f4f504b38a8", - "name": "SalesLogix Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6b0d2c2d-7280-373a-ff46-b290ac438071", - "name": "First Login", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6b4a8343-f948-4dfd-090c-726e241d56d4", - "name": "Deleted Lead Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6b5ad0b3-ebaf-9f48-4a2d-16e4370460f2", - "name": "Date Created", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6bdfe8f9-f036-6a56-724c-21ec7f8abd6a", - "name": "MD5 Hashed Email Address", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6da8256b-33c9-04de-f609-f61616418e3f", - "name": "Deployment Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6e4043fc-c796-cb2d-752d-28cf85bd0ad2", - "name": "Lead Score - TEST", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "71707913-7485-ffc1-1b82-f8607d6c0e92", - "name": "Db Sub Industry", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "733a1318-6f67-a98b-7c6b-9acbc4062dcc", - "name": "SFDC Lead ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "744894cd-d6df-592d-283a-a7fcf95f8661", - "name": "Standard Form", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "753b497a-f845-db82-494a-45419dc12124", - "name": "Deleted Contact Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "763412a7-5fed-3e3e-fa33-1cd40c861493", - "name": "Lead ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "76c00efb-c3ff-1a81-60a1-8a549188576f", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "7716ea6e-74ed-65da-8b89-4f78835286d2", - "name": "Nurture Track", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7747dd14-494f-9523-8bd5-4be4c47ba4e7", - "name": "Lead Score - Historical All-Time (HAT)", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7763d69a-e924-256e-236a-f4722ade03b3", - "name": "Preferred Language", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "77d073c8-da95-99c7-00d2-69b04a9261e1", - "name": "Db Annual Sales", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "78f84dc6-210b-3b4c-98ae-c8a73cc45ff9", - "name": "High Touch?", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "79252643-0a1b-7486-59a2-a4cbaec2d941", - "name": "Lead Status", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7c2faecb-df45-a820-8492-7b5459d10f9e", - "name": "Mobile Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7c7e39d8-ee7d-1927-31a1-6a310c3eb9bf", - "name": "Sensitivity", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7cba9cfc-2127-9d14-ab12-0098448c389a", - "name": "Owner", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7cf4d16a-d48f-29d8-6694-f50e6ddcb5fe", - "name": "Referring Keyword", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7daae6a7-f421-75c1-96b1-4c30bade4094", - "name": "D&B Business Structure", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7dacca31-d3bc-37da-5873-38c22e5f76ab", - "name": "Activity Type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7e3a33ad-e0b9-518c-ce67-fe1c5af68696", - "name": "Referrer Url", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7e4dd024-2bf9-9b73-ae48-057fae79ce2a", - "name": "Last Visit Date and Time", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7e9ee1a0-0e96-0ae0-a886-637539c1829e", - "name": "Lead Score Date - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "81372088-7dd3-68a4-7947-71e52dc362ea", - "name": "Address 1", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "81459370-676f-3dbc-dc11-b539d6edfb48", - "name": "Adused", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "81b44f01-06f0-5701-49e7-335b81807ec3", - "name": "Lead Rating - Historical All-Time (HAT)", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "826c4f3f-b9cb-15cd-ff77-9b45edb83c0f", - "name": "Slice Score", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "82823754-6b02-65fd-7f25-406e28248f82", - "name": "Lead Rating - Last (SPOI)", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "83176fa5-95c7-d38e-435d-f7760fe206fa", - "name": "Db Sic", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "83bf5d57-dd32-4617-7c40-b8bafe5f3dc2", - "name": "Online Trial Exp Date - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "83d4712c-e4b3-4375-cf9d-ae614f44d59a", - "name": "Company Size", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "83e40ce7-bf4e-220c-6b42-a9a36fcae13a", - "name": "First Page View Url", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "85c92f17-2fc5-0aef-8678-f74fa4194944", - "name": "Trial Task Exclusion", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "868b86ae-6698-a3d6-2721-082b1ed5071b", - "name": "Account Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "86bffd2c-882c-cde2-c430-989b03fb972b", - "name": "Eloqua Slice Modified Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8728037a-5434-fedc-7ba7-c1aae427dc69", - "name": "Create Lead Hold", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "87e95ee2-5e92-ce4e-64b9-5a83a558ceee", - "name": "TAE", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "88bfa24b-9f64-ff8d-97fa-2381fc233ac0", - "name": "Last Login", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8903e19a-10d2-357f-39e5-8d745bc61454", - "name": "Slice Score - Enterprise", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89912e81-c1a5-6b40-f0ea-fe0b5183c447", - "name": "Visitor Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "899ed97d-530d-2d9f-8b0e-3bf5a29fb23c", - "name": "Author Profiles - URL", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89efa8f8-d20f-cb1a-9173-8d314133199b", - "name": "MD5 Hashed Mobile Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8b4cdde4-827a-33c8-6bcb-092161e04e1a", - "name": "Microsoft Custom URL", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8b8309e5-e7f0-3120-b99e-d102c04efd37", - "name": "Lead Source Detail - Original", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8bf44440-809c-ee50-3777-57c3cf3cd4c9", - "name": "Db Industry", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8ed962eb-fce1-72ab-4448-ff838e3f7ae9", - "name": "Permission Medium", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8f4517d5-385d-fc87-59b9-f12ac21d30e8", - "name": "SHA256 Hashed Business Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8f65e106-177c-1f7e-8c24-98d2df7ceb4b", - "name": "Viz ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8f66de25-d6d0-ada8-bc0e-b08e68dde242", - "name": "Session", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9084a126-2b76-fc25-9a88-6b97515658ca", - "name": "Master Asset - temp", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "91f898d6-0974-658c-3571-cc2cd5ebb267", - "name": "Title", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "96d722a9-2d37-91ef-e578-f9b2967be2dc", - "name": "Trial Exp Date - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "96ffbfa2-2ea2-abae-2012-193e4e48b744", - "name": "Email Clicked Thru Link", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "974b25ac-741d-e623-d8d9-2c85d7487144", - "name": "Buying Horizon", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "97901990-85c9-5485-8ea4-ca517a86fed5", - "name": "Lead Score", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "99ea567e-b54c-2e20-c01d-4cbcef2a78ae", - "name": "Trial Product - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9c8cb46d-ce6a-aefd-630a-4ba768beab30", - "name": "Visitor External Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9e0aa02d-9d0d-6876-7586-9ef1ac027cf4", - "name": "Email Send Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9e53512f-9661-2c13-bd33-74c523446c5e", - "name": "Marketing Opt Out - For Harvested Names", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a16b4b57-8ee9-6936-3c3f-10b871e7fe46", - "name": "TC14 Confirmation Code - Attendees", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a1a5041a-e1a4-8494-c8a2-2a6f3c0e5c72", - "name": "Open Grade", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a5fe88c0-f4e3-6f2a-f7c2-f17ed178aba0", - "name": "Bizo ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a604252d-2019-acf6-93e0-4d7ad0635003", - "name": "Customer", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a652bf00-8440-85a9-6a7b-c1981a9408aa", - "name": "Qualifying Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a803d521-6556-aede-bda5-9d6bf5c2e09a", - "name": "Salesperson Email", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a9a5f8ea-96a8-88c0-8267-0e153d3bb11c", - "name": "Language Site - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ad1a6a2e-14d3-4c25-805f-5e0fbb2b4d5e", - "name": "Keyword - Original", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "adafd717-9d84-f98b-6d87-a199ff2ad17a", - "name": "Address 2", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "af6a1e64-feae-59c4-7c0c-57618deb6254", - "name": "Url", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0069ad8-d138-10c0-4c04-062e98675a4b", - "name": "SheerID Manual Verification", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0237a31-9a79-33ce-16aa-0d61406b8189", - "name": "Company Revenue", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0800664-76c5-40e1-1637-184cdfbb5c0a", - "name": "Slice Prime Exclude", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0a30a19-5e50-86d2-bdc0-407dc6202df7", - "name": "MS CRM Account ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0d88354-b329-7abe-b735-6a73d8ad03e0", - "name": "SFDC Account ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b156d1e5-a4b2-2c90-1b20-832e5a4d7500", - "name": "Eloqua GUID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b224cb8b-5586-07e5-b1e2-381cc99fab6b", - "name": "Server Trial Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b48cd695-4e9e-1432-83b7-80b0cf19f4be", - "name": "ID Number", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b625bf16-258c-705d-9adc-9d86b8b63481", - "name": "MSCRM Lead ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b7218f87-a230-16f1-bbe5-eb0ea62fcb1d", - "name": "NetSuite Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ba017b69-01b5-c795-76b1-fcc858f768d8", - "name": "Activity Date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ba0e7107-2125-9496-8d09-585292e4ef05", - "name": "Db Employee Count", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ba633673-0cfc-f451-3115-53a4cbb43fba", - "name": "Contact Us Request Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bbb0968e-8f6a-7069-2b42-9dae740cadb2", - "name": "Partner Agreement on File", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bbeea6f2-bd15-9af1-10b0-6fb540f82b19", - "name": "Comment 3", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bce93613-0021-7f25-414e-28db06c04cd6", - "name": "Business Phone", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bcfd5c26-e970-6723-03ab-1e0ff5c6ae57", - "name": "Student Verification ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c10aecd0-d9b4-3138-2b94-5826cde54ba5", - "name": "SFDC Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c128797e-c3e3-6a60-5973-fdde39f886da", - "name": "Lead Source - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c454a75b-02d6-3b58-74de-11cfc72a312e", - "name": "Remarket Details", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5991124-2430-d75d-9d07-48c08062ff38", - "name": "Contact Owner ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5d2be58-7cdb-1d59-5511-c542dc7eca7a", - "name": "Account Password", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c71482f8-838b-8a3b-6600-6d7bd45a663a", - "name": "D&B Total Employees", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c719c3d0-3053-b55a-8aff-7dd6de3cb7c2", - "name": "Last SFDC Campaign Status", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c71cd018-7b2e-55a7-3f3e-39e1afc5d996", - "name": "Asset Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c7ae5967-fb2c-cd81-ddbd-07118b108d67", - "name": "D&B DUNS Number", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "c9e03086-8069-e467-15b6-adbaa432dd9f", - "name": "Total Web Visits", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"webvisit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"WebVisit\"\r\nTHEN [Activity Id]\r\nEND)" - }, - { - "__typename": "ColumnField", - "id": "caf2c96d-33b2-e4d1-1afd-c5a726de3ef0", - "name": "Reason Primed - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cb4201df-24f4-9f32-9b79-7d66d03dd51e", - "name": "Lead Owner ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cb7b3e74-bd0e-c7e1-725c-d96a7bf8710a", - "name": "MSLA on File", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cc1ccd4f-2360-fab7-2135-77f44ae90918", - "name": "Opt-in Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cc2e1850-1f62-2a29-ba3d-fadf1425d103", - "name": "Comment 1", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ccdb2b75-fe35-6190-c97f-477c06263437", - "name": "Territory", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cd7544e9-e720-0b99-5257-051f0240d1ce", - "name": "Asset", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ceed24ae-7a2d-b748-0f82-cd8f9fce38b4", - "name": "Comment - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cf16a33e-58c0-e7d0-b14d-1ba45e7693b6", - "name": "Analysis Software Used", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d0180f9b-9cc7-5fcf-0a84-0f8ef1f82f1e", - "name": "Asset Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d03120e0-2f44-ccb2-a0b5-4c5cc979ea7f", - "name": "Account Partner Program Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d0bedcff-c50c-de8a-6ab1-bec1d7c5c714", - "name": "Teleteam Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d0df170f-215c-fd34-9068-220bc8acf2fe", - "name": "Appointment", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d20a0d9d-340c-fe05-466e-8e7d692571d3", - "name": "Last Website Visit Date and Time", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d3622297-2f45-66d0-6361-d4279c8a762f", - "name": "Opt-In", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d3bbd15a-eab0-b85c-b801-f60dd1992adf", - "name": "State or Province", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d40fd998-846b-2edf-b4f8-49f15e5dcc12", - "name": "Referring Website", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d467a8b4-129b-22ab-b20e-d33e37ba8cd0", - "name": "Last Campaign", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d4acdadb-b562-d85c-1559-395900c45481", - "name": "Department", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d4bc9531-f6d8-56cd-fea9-897c959cf293", - "name": "NetSuite Company ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d515ce11-031d-90ca-090e-1116a44663d0", - "name": "Do Not Process", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d521b321-94a0-1e31-fa22-f7491d7b7084", - "name": "SalesLogix Account ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d5591a4d-41f7-b6d6-0459-d968e1123a28", - "name": "Siebel OnDemand Account ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d5b02e56-70ac-59e2-7fa0-a5119a023977", - "name": "D&B Doing Business As", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d6024d34-1a97-8f64-fe4b-106dd198244a", - "name": "Known User", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d732656d-d6c3-e99b-7c2c-8f7d402c9ef6", - "name": "TQL Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d7abeca8-a14f-c6b5-3178-719fdd48c9ca", - "name": "D&B Annual Sales", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d7c959ef-541a-e698-f462-ff24408e5f3f", - "name": "Db State", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d84c2360-84a0-c749-1705-611bcd7b9f94", - "name": "Lead Record Type", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "da140e49-b5de-d4da-8ffc-10cb82aaaad6", - "name": "Referr's Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "da2238db-12d7-a6ff-2947-f8389224a465", - "name": "NNC", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "db499415-9da7-7ba9-40dc-f43c4928c4c1", - "name": "Total Page Views", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"pageview\"\r\n\r\nCOUNTD(IF [Activity Type]= \"PageView\"\r\nTHEN [Activity Id]\r\nEND)" - }, - { - "__typename": "ColumnField", - "id": "db72dfef-f7b5-f9e8-0cf0-61642bea4b87", - "name": "External Notification Email", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dc910434-ea48-7f21-08b4-073130e038bf", - "name": "Last Modified by CRM System", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dd160e27-dc73-61dd-8af6-a7c7cdfe75aa", - "name": "Campaign ID - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dd757957-9901-aebc-df52-917935861ee4", - "name": "Lead Stage", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "df990c11-28e4-1817-e6e1-16235cc18ffe", - "name": "Contact Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e053e8bd-4530-b2c8-13e8-e7dcc886b9c0", - "name": "Analysis Types", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e1e1132a-d4ef-699a-c65f-631b88b663e3", - "name": "Comment 2", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e2144fed-51e4-1fb2-0b8c-cc4924e34f32", - "name": "NetSuite Lead ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e3984f24-8a46-77f1-215c-0034e3109351", - "name": "No Promo", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e3e8fd23-c158-d969-590a-ea66d8d2b4c2", - "name": "Permission Date", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e50e9f88-6001-9790-9ada-5a937fc6508a", - "name": "Ip Address", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e6dc0f55-da54-f61e-5547-607efa493058", - "name": "Salesnet OwnerID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e728bc56-e321-9fcc-402d-b2bf32b35fc9", - "name": "Browser Language - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e8411e55-61ba-4117-35fb-1f633aa8ba1a", - "name": "Partner TSI Birthday", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e8715f30-224c-e7f3-6ac7-2c2fd7178b07", - "name": "Dept", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e95bc2cb-f492-77b9-c089-b9325be92dc2", - "name": "StrikeIron Country", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ec3ec4d3-dfaf-ae17-8b78-b7dc434c00b1", - "name": "Email Recipient Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ee0cf28b-8433-9497-c211-999efddc8b25", - "name": "AWS AccountID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ee5dce40-c765-c88c-c717-bd30e5e21df3", - "name": "SFDC EmailOptOut", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "eebcea3f-7ee9-e4d3-eda1-b9b53be81d14", - "name": "Job Level", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "eec8022b-9233-3e96-20cc-eb568af9ea56", - "name": "Website", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "eef592ae-8760-72b9-5d32-5b7a3cbc95a7", - "name": "Date Modified", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ef86298d-95d7-b4e8-d3d8-9aed60a0bbde", - "name": "Last Name", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f11c0def-dec8-e94d-b73f-4e2a0a82dc3f", - "name": "Keyword - Most Recent", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f14c520a-358c-928c-42c8-b7f89249c7c8", - "name": "Contact ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f164eeaf-5911-6355-bd67-50a0ee4fce2c", - "name": "Web Visit Id", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f361f947-958c-78f8-5211-ec811cc9da1f", - "name": "Db Title", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f42a587e-c61a-89b8-eec4-b201447787ac", - "name": "ESD Access on Contact", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f6463150-5d24-6ea1-bbf2-efde3e26155f", - "name": "Subscription Page Link", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f667bb77-5e7b-8c56-d997-fb281f901ebc", - "name": "Siebel OnDemand Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f6bcec1b-2b3d-ac5b-503e-69ca7c02b7db", - "name": "Salesnet Contact ID", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "f834307d-4adf-48e3-791b-5be5349207ee", - "name": "Total Forms Submitted", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "// It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"formsubmit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"FormSubmit\"\r\nTHEN [Activity Id]\r\nEND)" - }, - { - "__typename": "ColumnField", - "id": "fda84c4e-e290-3568-d058-b9f5811df1d3", - "name": "Name Analyzer - Validation Results", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ff17c211-7524-48e1-2c41-5f8134e90273", - "name": "Highest Stage", - "description": null, - "isHidden": true, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Account Engagement", - "projectName": "default" - } - } - ] - }, - { - "id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c", - "name": "Workbook published ds", - "luid": "190a6a5c-63ed-4de1-8045-faeae5df5b01", - "projectName": "default", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/17904", - "createdAt": "2022-01-12T01:44:27Z", - "updatedAt": "2022-01-20T05:54:53Z", - "sheets": [ - { - "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", - "name": "published sheet ds", - "path": "Workbookpublishedds/Sheet1", - "createdAt": "2022-01-12T01:44:27Z", - "updatedAt": "2022-01-20T05:54:53Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "00cce29f-b561-bb41-3557-8e19660bb5dd", - "name": "test publish datasource" - }, - { - "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38", - "name": "test publish datasource" - } - ], - "datasourceFields": [ - { - "__typename": "DatasourceField", - "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", - "name": "staff_last_name", - "description": null, - "upstreamColumns": [ - { - "name": "staff_last_name" - } - ], - "remoteField": { - "__typename": "ColumnField", - "id": "cab66386-799c-d9b6-812b-d3931b626f3b", - "name": "staff_last_name", - "description": null, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - } - }, - { - "__typename": "DatasourceField", - "id": "c058d792-9f88-8642-4e63-682cfb6382af", - "name": "amount", - "description": null, - "upstreamColumns": [ - { - "name": "amount" - } - ], - "remoteField": { - "__typename": "ColumnField", - "id": "9481e156-2775-f5fa-5aa3-be174224d4fb", - "name": "amount", - "description": null, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - } - }, - { - "__typename": "DatasourceField", - "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", - "name": "customer_first_name", - "description": null, - "upstreamColumns": [ - { - "name": "customer_first_name" - } - ], - "remoteField": { - "__typename": "ColumnField", - "id": "ca23efe0-5a93-344a-3f69-ec777ee1b318", - "name": "customer_first_name", - "description": null, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - } - } - ] - } - ], - "dashboards": [], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38", - "name": "test publish datasource", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "a7825692-7de9-113d-5377-ae113331a9ec", - "name": "dvdrental", - "connectionType": "postgres", - "isEmbedded": false - } - ], - "upstreamTables": [ - { - "id": "39657832-0769-6372-60c3-687a51e2a772", - "name": "customer", - "schema": "", - "fullName": "customer", - "connectionType": "postgres", - "description": "", - "columns": [] - }, - { - "id": "3cdd0522-44ef-62eb-ba52-71545c258344", - "name": "payment", - "schema": "", - "fullName": "payment", - "connectionType": "postgres", - "description": "", - "columns": [] - }, - { - "id": "7df39af9-6767-4c9c-4120-155a024de062", - "name": "staff", - "schema": "", - "fullName": "staff", - "connectionType": "postgres", - "description": "", - "columns": [] - } - ], - "fields": [ - { - "__typename": "DatasourceField", - "id": "0235103b-b83a-1380-8357-45b6e458202d", - "name": "customer_id", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "494eb750-ceb8-5000-e42b-f5889389c62b", - "name": "Custom SQL Query", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", - "name": "staff_last_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "79ab36f4-e1f3-ec9a-13c6-e7658f3ed563", - "name": "staff_first_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "8dbd31bb-460f-bb52-3b26-d0b4b5df875e", - "name": "customer_last_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "c058d792-9f88-8642-4e63-682cfb6382af", - "name": "amount", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", - "name": "customer_first_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "ddadd012-bcdb-2ddd-9021-c590410c3e59", - "name": "payment_date", - "description": null, - "isHidden": false, - "folderName": null - } - ], - "upstreamDatasources": [ - { - "name": "test publish datasource" - } - ], - "workbook": { - "name": "Workbook published ds", - "projectName": "default" - } - } - ] - }, - { - "id": "fdd1cc3d-f75d-3569-bc10-e2eb80496a3e", - "name": "Regional", - "luid": "87454d14-92ed-4ce2-aab4-9976b5a70da0", - "projectName": "default", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/15625", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "sheets": [ - { - "id": "01de32e4-ce64-27c3-8ae2-3af58263d785", - "name": "Flight Delays", - "path": "Regional_16397753068010/FlightDelays", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "f812ed00-5fbb-a8a5-3346-91a5df2c41cf", - "name": "Flight" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "001d87a3-58e5-0fc6-153e-5a13a5e3a470", - "name": "Minutes of Delay", - "description": null, - "upstreamColumns": [ - { - "name": "Minutes of Delay" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "45f5aec8-243d-fde3-d9ea-531b3c33714c", - "name": "Ontime Category", - "description": null, - "upstreamColumns": [ - { - "name": "Ontime Category" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "b254bcdd-80a8-ad09-79a4-2291fdbc8835", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "aggregation": "Year" - }, - { - "__typename": "CalculatedField", - "id": "b5e2b3f8-b7b5-8a09-bc0f-a2fdac028760", - "name": "Minutes of Delay per Flight", - "description": null, - "upstreamColumns": [ - { - "name": "Minutes of Delay" - }, - { - "name": "Number of Flights" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "[Minutes of Delay]/[Number of Flights]" - }, - { - "__typename": "CalculatedField", - "id": "d4d03424-f81a-723c-40e9-eb546477583a", - "name": "% of Delayed Flights", - "description": null, - "upstreamColumns": [ - { - "name": "Number of Flights" - }, - { - "name": "Ontime Category" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "Sum(if contains([Ontime Category], \"Delayed\") then [Number of Flights] else 0 end)/sum([Number of Flights])" - }, - { - "__typename": "ColumnField", - "id": "dd808e37-172b-aebc-abc7-a91d0b74027a", - "name": "Number of Flights", - "description": null, - "upstreamColumns": [ - { - "name": "Number of Flights" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "e6aab212-0caa-ca6a-af3c-9f42792c8965", - "name": "Carrier Name", - "description": null, - "upstreamColumns": [ - { - "name": "Carrier Name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "ColumnField", - "id": "f0685d9c-19d1-7d41-b276-9d6bd55feb4f", - "name": "Airport Name", - "description": null, - "upstreamColumns": [ - { - "name": "Airport Name" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - } - ] - }, - { - "id": "0e0f7370-941f-7101-d52b-5206d7466fba", - "name": "Scatter", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Global Temperatures", - "path": "Regional_16397753068010/GlobalTemperatures" - } - ], - "upstreamDatasources": [ - { - "id": "62284efc-6980-2217-c9cd-7fe336329275", - "name": "Global Temperatures" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "1b7464fd-86e7-26e8-9837-5b46851d2f9d", - "name": "Median", - "description": null, - "upstreamColumns": [ - { - "name": "Median" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "5a79deaa-261f-6f7f-39f0-9e47961def89", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Year" - } - ], - "role": "DIMENSION", - "dataType": "DATE", - "aggregation": null, - "formula": "DATE(DATEPARSE(\"yyyy/MM\",[Year]))" - }, - { - "__typename": "ColumnField", - "id": "8da0b3fa-1daf-1ceb-3de0-a644de6b2e36", - "name": "Year", - "description": null, - "upstreamColumns": [ - { - "name": "Year" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "CalculatedField", - "id": "a83d6692-c5d8-acdc-490d-bfb956ca841f", - "name": "Above Median?", - "description": null, - "upstreamColumns": [ - { - "name": "Median" - } - ], - "role": "MEASURE", - "dataType": "STRING", - "aggregation": null, - "formula": "IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND" - } - ] - }, - { - "id": "16229c21-3e95-ebac-2e05-272f3e95c45f", - "name": "Obesity Map", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Obesity", - "path": "Regional_16397753068010/Obesity" - } - ], - "upstreamDatasources": [ - { - "id": "8eb071bf-364e-262b-c761-1ab465b2f214", - "name": "Obesity" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "037264bc-c913-16ee-a48d-e6c4032f16d9", - "name": "County", - "description": null, - "upstreamColumns": [ - { - "name": "County" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "311b671e-c059-f621-87f8-4c66f4f913b6", - "name": "Regional Obesity Rate", - "description": null, - "upstreamColumns": [ - { - "name": "Adult Obesity (% of pop)" - }, - { - "name": "Region" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "{FIXED [Region]: AVG([Adult Obesity (% of pop)])}" - }, - { - "__typename": "ColumnField", - "id": "3e6272d7-8ca9-ecb5-a8a3-954a7b1a4e44", - "name": "Adult Obesity (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Adult Obesity (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "73bfee40-6449-eed2-d8ce-d57421b87e88", - "name": "State", - "description": null, - "upstreamColumns": [ - { - "name": "State" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "8e15f252-0564-2b07-d4a5-d7baf9598f4b", - "name": "Food Insecure (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Food Insecure (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9e821258-5ded-cd66-d481-fcc013bd2e82", - "name": "Physically Inactive (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Physically Inactive (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "aa46f004-1705-7c63-4c5b-8f81943c1404", - "name": "Above or Below?", - "description": null, - "upstreamColumns": [ - { - "name": "County" - }, - { - "name": "Adult Obesity (% of pop)" - }, - { - "name": "Region" - }, - { - "name": "State" - } - ], - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "formula": "IF ROUND([Regional Obesity Rate],2) = ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN \"on par with\"\r\nELSEIF ROUND([Regional Obesity Rate],2) < ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN STR(ROUND(([Difference from Region]*100),2)) + \"% above\"\r\nELSE STR(ROUND(([Difference from Region]*100),2)) + \"% below\"\r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bad6bca1-f1e9-a680-966a-1056ee8ca40c", - "name": "Adult Smokers (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Adult Smokers (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f9342df1-3ee3-7a46-adb5-ea3c7feb41f8", - "name": "Region", - "description": null, - "upstreamColumns": [ - { - "name": "Region" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "fed6ff8b-ead4-b1ae-ff0e-f6eb513637e0", - "name": "Difference from Region", - "description": null, - "upstreamColumns": [ - { - "name": "County" - }, - { - "name": "Adult Obesity (% of pop)" - }, - { - "name": "Region" - }, - { - "name": "State" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "ABS(ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)- ROUND([Regional Obesity Rate],2))" - } - ] - }, - { - "id": "1e7aafe6-bedb-0ca1-056d-764f6a1da6ff", - "name": "S&P Forward Returns", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Economy", - "path": "Regional_16397753068010/Economy" - } - ], - "upstreamDatasources": [ - { - "id": "cbe81486-6bb8-2877-cab9-fba86766ba06", - "name": "Economy" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0809ac25-56c7-fb87-c70c-bc588dc37159", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "19e308cc-ebac-b830-6541-3d88fbdd63c5", - "name": "Value", - "description": null, - "upstreamColumns": [ - { - "name": "Value" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "c782679b-436d-dd67-4a2e-0005df06eeae", - "name": "Decade", - "description": null, - "upstreamColumns": [ - { - "name": "Decade" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "e63a5206-876f-1aef-d67a-0258e524c1d3", - "name": "Metric", - "description": null, - "upstreamColumns": [ - { - "name": "Metric" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "24a8bfc1-f095-80e9-3efa-3c34fc42f1fc", - "name": "Heat Map", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Global Temperatures", - "path": "Regional_16397753068010/GlobalTemperatures" - } - ], - "upstreamDatasources": [ - { - "id": "62284efc-6980-2217-c9cd-7fe336329275", - "name": "Global Temperatures" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "1b7464fd-86e7-26e8-9837-5b46851d2f9d", - "name": "Median", - "description": null, - "upstreamColumns": [ - { - "name": "Median" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "5a79deaa-261f-6f7f-39f0-9e47961def89", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Year" - } - ], - "role": "DIMENSION", - "dataType": "DATE", - "aggregation": null, - "formula": "DATE(DATEPARSE(\"yyyy/MM\",[Year]))" - }, - { - "__typename": "ColumnField", - "id": "8da0b3fa-1daf-1ceb-3de0-a644de6b2e36", - "name": "Year", - "description": null, - "upstreamColumns": [ - { - "name": "Year" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - }, - { - "__typename": "CalculatedField", - "id": "a83d6692-c5d8-acdc-490d-bfb956ca841f", - "name": "Above Median?", - "description": null, - "upstreamColumns": [ - { - "name": "Median" - } - ], - "role": "MEASURE", - "dataType": "STRING", - "aggregation": null, - "formula": "IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND" - } - ] - }, - { - "id": "3259a5fd-271c-5686-4604-d096020abf93", - "name": "Stocks", - "path": "Regional_16397753068010/Stocks", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "3136838d-95a9-a311-2657-b16898a8e574", - "name": "Stocks" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "4c6bdd32-ec0f-6191-19b4-df0781db1ca8", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9decf8b5-7b70-2f72-e1c7-1edc74f9e888", - "name": "Volume", - "description": null, - "upstreamColumns": [ - { - "name": "Volume" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "fabf2d2e-52eb-0f06-cbc5-377c9596a395", - "name": "Company", - "description": null, - "upstreamColumns": [ - { - "name": "Company" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "fe1cedf1-b622-7bcf-1ee4-dcbd5fc5bf07", - "name": "Close", - "description": null, - "upstreamColumns": [ - { - "name": "Close" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - } - ] - }, - { - "id": "5280b970-92b0-b949-d7df-2131e31d60ef", - "name": "College", - "path": "Regional_16397753068010/College", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "5e6c6c79-e728-4bd1-4033-056607c1927a", - "name": "Education" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "011c5ba5-3331-e3bb-1de6-747e1dd474bf", - "name": "Total Score", - "description": null, - "upstreamColumns": [ - { - "name": "Verbal" - }, - { - "name": "Math" - }, - { - "name": "Writing" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "[Math]+[Verbal]+[Writing]" - }, - { - "__typename": "CalculatedField", - "id": "70950a83-32d0-7ce6-6600-efa8ba7ca67a", - "name": "True Average", - "description": null, - "upstreamColumns": [ - { - "name": "Verbal" - }, - { - "name": "Math" - }, - { - "name": "Writing" - } - ], - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "formula": "{SUM([Total Score])/SUM(1)}\r\n//Because this is a table-scoped LOD, filters \r\n//need to be context filters so that they are \r\n//evaluated prior to the calculation" - }, - { - "__typename": "ColumnField", - "id": "8b959097-643d-f46e-7c51-14cf069a4b3e", - "name": "College", - "description": null, - "upstreamColumns": [ - { - "name": "College" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "94d339a1-2322-91cc-0202-8c28b191b3d5", - "name": "Writing", - "description": null, - "upstreamColumns": [ - { - "name": "Writing" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "a9046f8d-f7c5-1e53-26db-fc2cd90ab825", - "name": "Math", - "description": null, - "upstreamColumns": [ - { - "name": "Math" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "c4c7553b-0970-9745-863a-293f327a6f05", - "name": "Academic Year", - "description": null, - "upstreamColumns": [ - { - "name": "Academic Year" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "d55fa467-3fa2-85d5-eda6-01f8c3fec12c", - "name": "Gender", - "description": null, - "upstreamColumns": [ - { - "name": "Gender" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ece38df1-2b21-6d40-ad00-8361d7ec94d9", - "name": "Verbal", - "description": null, - "upstreamColumns": [ - { - "name": "Verbal" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - } - ] - }, - { - "id": "6e6d6590-d034-6928-ce21-6d0e798aafd3", - "name": "S&P Returns Vs Conditions", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Economy", - "path": "Regional_16397753068010/Economy" - } - ], - "upstreamDatasources": [ - { - "id": "cbe81486-6bb8-2877-cab9-fba86766ba06", - "name": "Economy" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0809ac25-56c7-fb87-c70c-bc588dc37159", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "19e308cc-ebac-b830-6541-3d88fbdd63c5", - "name": "Value", - "description": null, - "upstreamColumns": [ - { - "name": "Value" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "c782679b-436d-dd67-4a2e-0005df06eeae", - "name": "Decade", - "description": null, - "upstreamColumns": [ - { - "name": "Decade" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "e63a5206-876f-1aef-d67a-0258e524c1d3", - "name": "Metric", - "description": null, - "upstreamColumns": [ - { - "name": "Metric" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "7356a89b-8e06-002f-e856-0c05370c51b6", - "name": "S&P Returns by Decade", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Economy", - "path": "Regional_16397753068010/Economy" - } - ], - "upstreamDatasources": [ - { - "id": "cbe81486-6bb8-2877-cab9-fba86766ba06", - "name": "Economy" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "0809ac25-56c7-fb87-c70c-bc588dc37159", - "name": "Date", - "description": null, - "upstreamColumns": [ - { - "name": "Date" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "19e308cc-ebac-b830-6541-3d88fbdd63c5", - "name": "Value", - "description": null, - "upstreamColumns": [ - { - "name": "Value" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "SetField", - "id": "77fc3ad6-d6a4-7967-0988-108757e91113", - "name": "Set 1", - "description": null, - "upstreamColumns": [ - { - "name": "Metric" - } - ] - }, - { - "__typename": "ColumnField", - "id": "c782679b-436d-dd67-4a2e-0005df06eeae", - "name": "Decade", - "description": null, - "upstreamColumns": [ - { - "name": "Decade" - } - ], - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "e63a5206-876f-1aef-d67a-0258e524c1d3", - "name": "Metric", - "description": null, - "upstreamColumns": [ - { - "name": "Metric" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "75ed8d13-49eb-5153-c704-21c363491961", - "name": "Obesity Scatter Plot", - "path": "", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:27Z", - "tags": [], - "containedInDashboards": [], - "upstreamDatasources": [ - { - "id": "8eb071bf-364e-262b-c761-1ab465b2f214", - "name": "Obesity" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "037264bc-c913-16ee-a48d-e6c4032f16d9", - "name": "County", - "description": null, - "upstreamColumns": [ - { - "name": "County" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "3e6272d7-8ca9-ecb5-a8a3-954a7b1a4e44", - "name": "Adult Obesity (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Adult Obesity (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "73bfee40-6449-eed2-d8ce-d57421b87e88", - "name": "State", - "description": null, - "upstreamColumns": [ - { - "name": "State" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "8e15f252-0564-2b07-d4a5-d7baf9598f4b", - "name": "Food Insecure (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Food Insecure (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "9e821258-5ded-cd66-d481-fcc013bd2e82", - "name": "Physically Inactive (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Physically Inactive (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "bad6bca1-f1e9-a680-966a-1056ee8ca40c", - "name": "Adult Smokers (% of pop)", - "description": null, - "upstreamColumns": [ - { - "name": "Adult Smokers (% of pop)" - } - ], - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f9342df1-3ee3-7a46-adb5-ea3c7feb41f8", - "name": "Region", - "description": null, - "upstreamColumns": [ - { - "name": "Region" - } - ], - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - } - ], - "dashboards": [ - { - "id": "36349f01-e28f-9c6f-9803-d3fdd4ce20db", - "name": "Obesity", - "path": "Regional_16397753068010/Obesity", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "sheets": [ - { - "id": "16229c21-3e95-ebac-2e05-272f3e95c45f", - "name": "Obesity Map" - }, - { - "id": "75ed8d13-49eb-5153-c704-21c363491961", - "name": "Obesity Scatter Plot" - } - ] - }, - { - "id": "39a3ed54-035e-6e57-2ed4-a70261267c6a", - "name": "Global Temperatures", - "path": "Regional_16397753068010/GlobalTemperatures", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "sheets": [ - { - "id": "0e0f7370-941f-7101-d52b-5206d7466fba", - "name": "Scatter" - }, - { - "id": "24a8bfc1-f095-80e9-3efa-3c34fc42f1fc", - "name": "Heat Map" - } - ] - }, - { - "id": "d294afb7-3ecc-6ce8-8b78-83081c2fb4c3", - "name": "Economy", - "path": "Regional_16397753068010/Economy", - "createdAt": "2021-12-17T21:08:26Z", - "updatedAt": "2021-12-17T21:08:26Z", - "sheets": [ - { - "id": "1e7aafe6-bedb-0ca1-056d-764f6a1da6ff", - "name": "S&P Forward Returns" - }, - { - "id": "6e6d6590-d034-6928-ce21-6d0e798aafd3", - "name": "S&P Returns Vs Conditions" - }, - { - "id": "7356a89b-8e06-002f-e856-0c05370c51b6", - "name": "S&P Returns by Decade" - } - ] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "3136838d-95a9-a311-2657-b16898a8e574", - "name": "Stocks", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "fe491b99-33e0-61c2-0670-68521c83ab5c", - "name": "9162c518-d001-4394-8a83-d1307ee8be2f", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "eb41d26a-30d3-03af-671b-e4e413bb3b6f", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "Date", - "remoteType": "DBDATE" - }, - { - "name": "Number of Records", - "remoteType": "I8" - }, - { - "name": "Close", - "remoteType": "R8" - }, - { - "name": "Low", - "remoteType": "R8" - }, - { - "name": "Company", - "remoteType": "STR" - }, - { - "name": "High", - "remoteType": "R8" - }, - { - "name": "Volume", - "remoteType": "I8" - }, - { - "name": "Open", - "remoteType": "R8" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "02e075cf-6fbe-9de5-0acc-e85dacf7b1f4", - "name": "High", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1a567968-3134-6d46-1d2a-c033472b9ead", - "name": "Low", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "263474eb-f0e9-2a44-cefb-103bbf0287ae", - "name": "Open", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4c6bdd32-ec0f-6191-19b4-df0781db1ca8", - "name": "Date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "545bd315-c5dd-bbdc-a03f-5ff55ad9c939", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "9decf8b5-7b70-2f72-e1c7-1edc74f9e888", - "name": "Volume", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f8dc4545-642f-bd9c-fd1a-657d7f777c06", - "name": "Stocks", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "fabf2d2e-52eb-0f06-cbc5-377c9596a395", - "name": "Company", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fe1cedf1-b622-7bcf-1ee4-dcbd5fc5bf07", - "name": "Close", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Regional", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "5e6c6c79-e728-4bd1-4033-056607c1927a", - "name": "Education", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "030d238b-9c7f-5609-6ba5-2b313da94095", - "name": "494910db-fadc-4aab-8023-1180ab03432b", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "0a9e9108-1a3a-8be5-448a-bc0bce9f8c0b", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "College", - "remoteType": "STR" - }, - { - "name": "Major", - "remoteType": "STR" - }, - { - "name": "Verbal", - "remoteType": "R8" - }, - { - "name": "Ethnicity", - "remoteType": "STR" - }, - { - "name": "Academic Year", - "remoteType": "I8" - }, - { - "name": "Math", - "remoteType": "R8" - }, - { - "name": "Gender", - "remoteType": "STR" - }, - { - "name": "Writing", - "remoteType": "R8" - } - ] - } - ], - "fields": [ - { - "__typename": "CalculatedField", - "id": "011c5ba5-3331-e3bb-1de6-747e1dd474bf", - "name": "Total Score", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n0", - "aggregation": null, - "formula": "[Math]+[Verbal]+[Writing]" - }, - { - "__typename": "ColumnField", - "id": "3b5c29b3-87f5-fb0e-7959-5244b5f4d051", - "name": "Education", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "6ee9c944-4ed9-908a-d26d-2c2c3a15a609", - "name": "Ethnicity", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "70950a83-32d0-7ce6-6600-efa8ba7ca67a", - "name": "True Average", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n0", - "aggregation": null, - "formula": "{SUM([Total Score])/SUM(1)}\r\n//Because this is a table-scoped LOD, filters \r\n//need to be context filters so that they are \r\n//evaluated prior to the calculation" - }, - { - "__typename": "ColumnField", - "id": "8b959097-643d-f46e-7c51-14cf069a4b3e", - "name": "College", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "94d339a1-2322-91cc-0202-8c28b191b3d5", - "name": "Writing", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "97c25dcf-c658-7d9b-4636-589eea6f136c", - "name": "Major", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a9046f8d-f7c5-1e53-26db-fc2cd90ab825", - "name": "Math", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c4c7553b-0970-9745-863a-293f327a6f05", - "name": "Academic Year", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d55fa467-3fa2-85d5-eda6-01f8c3fec12c", - "name": "Gender", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ece38df1-2b21-6d40-ad00-8361d7ec94d9", - "name": "Verbal", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Regional", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "62284efc-6980-2217-c9cd-7fe336329275", - "name": "Global Temperatures", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "09680598-33c5-af00-c035-6dbd6be43f41", - "name": "b2d6d314-cafc-4445-ba12-2d559d78a67f", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "1d859ab8-3e0a-9381-fed8-d30716dfe839", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "Year", - "remoteType": "STR" - }, - { - "name": "Median", - "remoteType": "R8" - }, - { - "name": "Lower CI", - "remoteType": "R8" - }, - { - "name": "Upper CI", - "remoteType": "R8" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "1b7464fd-86e7-26e8-9837-5b46851d2f9d", - "name": "Median", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n#,##0.00;-#,##0.00", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3d37788e-2de1-bfea-0458-fb666dd46810", - "name": "Upper CI", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n#,##0.00;-#,##0.00", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "5a79deaa-261f-6f7f-39f0-9e47961def89", - "name": "Date", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": null, - "formula": "DATE(DATEPARSE(\"yyyy/MM\",[Year]))" - }, - { - "__typename": "ColumnField", - "id": "651a9328-5119-6f3f-b60a-f7c8bd6d0d83", - "name": "Global Temperatures", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "6f62d82d-3f23-1fb4-e06a-946da9fd64f4", - "name": "Lower CI", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n#,##0.00;-#,##0.00", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "882a5d06-20a8-001b-465f-e04e7574d5ef", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "8da0b3fa-1daf-1ceb-3de0-a644de6b2e36", - "name": "Year", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a83d6692-c5d8-acdc-490d-bfb956ca841f", - "name": "Above Median?", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "formula": "IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND" - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Regional", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "8eb071bf-364e-262b-c761-1ab465b2f214", - "name": "Obesity", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "e918388a-92cb-3123-1b78-62e36bfbacdd", - "name": "3a84d583-6fa6-46cc-b99b-87db34934ecb", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "7bc75df4-ac9d-f163-b1d3-1ebb269facc9", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "County", - "remoteType": "STR" - }, - { - "name": "Children in Poverty (% of pop)", - "remoteType": "R8" - }, - { - "name": "Adult Obesity (% of pop)", - "remoteType": "R8" - }, - { - "name": "Food Insecure (% of pop)", - "remoteType": "R8" - }, - { - "name": "Diabetic (% of pop)", - "remoteType": "R8" - }, - { - "name": "Physically Inactive (% of pop)", - "remoteType": "R8" - }, - { - "name": "Adult Smokers (% of pop)", - "remoteType": "R8" - }, - { - "name": "Region", - "remoteType": "STR" - }, - { - "name": "State", - "remoteType": "STR" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "037264bc-c913-16ee-a48d-e6c4032f16d9", - "name": "County", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "311b671e-c059-f621-87f8-4c66f4f913b6", - "name": "Regional Obesity Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "formula": "{FIXED [Region]: AVG([Adult Obesity (% of pop)])}" - }, - { - "__typename": "ColumnField", - "id": "3e6272d7-8ca9-ecb5-a8a3-954a7b1a4e44", - "name": "Adult Obesity (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7152a028-d2e0-f46c-5fcf-3ce32123f45e", - "name": "Diabetic (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "73bfee40-6449-eed2-d8ce-d57421b87e88", - "name": "State", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8e15f252-0564-2b07-d4a5-d7baf9598f4b", - "name": "Food Insecure (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9e821258-5ded-cd66-d481-fcc013bd2e82", - "name": "Physically Inactive (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a11256fc-ba2b-317d-f856-f95afdf7aebb", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "CalculatedField", - "id": "aa46f004-1705-7c63-4c5b-8f81943c1404", - "name": "Above or Below?", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "formula": "IF ROUND([Regional Obesity Rate],2) = ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN \"on par with\"\r\nELSEIF ROUND([Regional Obesity Rate],2) < ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN STR(ROUND(([Difference from Region]*100),2)) + \"% above\"\r\nELSE STR(ROUND(([Difference from Region]*100),2)) + \"% below\"\r\nEND" - }, - { - "__typename": "ColumnField", - "id": "bad6bca1-f1e9-a680-966a-1056ee8ca40c", - "name": "Adult Smokers (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c763ccd1-4357-a0d5-3d4b-b6afddbb23bb", - "name": "Obesity", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "cb9c1b62-7962-1727-3918-54783df0f78e", - "name": "Children in Poverty (% of pop)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "HierarchyField", - "id": "f2f2eb2b-deb8-b8bf-998b-b8c1ff29322b", - "name": "State, County", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "ColumnField", - "id": "f9342df1-3ee3-7a46-adb5-ea3c7feb41f8", - "name": "Region", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "fed6ff8b-ead4-b1ae-ff0e-f6eb513637e0", - "name": "Difference from Region", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "formula": "ABS(ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)- ROUND([Regional Obesity Rate],2))" - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Regional", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "cbe81486-6bb8-2877-cab9-fba86766ba06", - "name": "Economy", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "958c50dc-b402-003c-37e7-6182ec9a902a", - "name": "18138201-7713-4d0c-8a0c-3a83b8e77022", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "b80f5b98-c9c3-1fb5-8c87-df9c926edc5c", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "Date", - "remoteType": "DBTIMESTAMP" - }, - { - "name": "Value", - "remoteType": "R8" - }, - { - "name": "Decade", - "remoteType": "I8" - }, - { - "name": "Metric", - "remoteType": "STR" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "0809ac25-56c7-fb87-c70c-bc588dc37159", - "name": "Date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "19e308cc-ebac-b830-6541-3d88fbdd63c5", - "name": "Value", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "SetField", - "id": "77fc3ad6-d6a4-7967-0988-108757e91113", - "name": "Set 1", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "ColumnField", - "id": "7aaa95e2-4bb2-30dc-e919-85607557321e", - "name": "Economy", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "c782679b-436d-dd67-4a2e-0005df06eeae", - "name": "Decade", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e63a5206-876f-1aef-d67a-0258e524c1d3", - "name": "Metric", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Regional", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "f812ed00-5fbb-a8a5-3346-91a5df2c41cf", - "name": "Flight", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "8ae0345a-c980-337b-5dcc-7a7aa4896210", - "name": "b89d64a5-dff9-444e-bc46-2eef1347563d", - "connectionType": "hyper", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "273a5cd8-2dce-ae53-0b48-f68ef9f1b4bf", - "name": "Extract", - "schema": "Extract", - "fullName": "[Extract].[Extract]", - "connectionType": "hyper", - "description": "", - "columns": [ - { - "name": "Minutes of Delay", - "remoteType": "I8" - }, - { - "name": "Carrier Code", - "remoteType": "STR" - }, - { - "name": "State", - "remoteType": "STR" - }, - { - "name": "Airport Name", - "remoteType": "STR" - }, - { - "name": "Date", - "remoteType": "DBDATE" - }, - { - "name": "Airport Code", - "remoteType": "STR" - }, - { - "name": "Number of Flights", - "remoteType": "R8" - }, - { - "name": "City", - "remoteType": "STR" - }, - { - "name": "Carrier Name", - "remoteType": "STR" - }, - { - "name": "Ontime Category", - "remoteType": "STR" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "001d87a3-58e5-0fc6-153e-5a13a5e3a470", - "name": "Minutes of Delay", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "45f5aec8-243d-fde3-d9ea-531b3c33714c", - "name": "Ontime Category", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4676f057-c82f-743e-89ec-3920ac7ac4cf", - "name": "City", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ + "__typename": "DatasourceField", + "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", + "name": "staff_last_name", + "description": null, + "upstreamColumns": [ { - "table": {} + "name": "staff_last_name" } - ] + ], + "remoteField": { + "__typename": "ColumnField", + "id": "cab66386-799c-d9b6-812b-d3931b626f3b", + "name": "staff_last_name", + "description": null, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": "Count" + } }, { - "__typename": "ColumnField", - "id": "61907993-08ac-54f1-8639-6c3a59f26d60", - "name": "Carrier Code", + "__typename": "DatasourceField", + "id": "c058d792-9f88-8642-4e63-682cfb6382af", + "name": "amount", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ + "upstreamColumns": [ { - "table": {} + "name": "amount" } - ] + ], + "remoteField": { + "__typename": "ColumnField", + "id": "9481e156-2775-f5fa-5aa3-be174224d4fb", + "name": "amount", + "description": null, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "aggregation": "Sum" + } }, { - "__typename": "ColumnField", - "id": "8dafe292-0d8d-f30c-202e-6dafac860acf", - "name": "State", + "__typename": "DatasourceField", + "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", + "name": "customer_first_name", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ + "upstreamColumns": [ { - "table": {} + "name": "customer_first_name" } - ] + ], + "remoteField": { + "__typename": "ColumnField", + "id": "ca23efe0-5a93-344a-3f69-ec777ee1b318", + "name": "customer_first_name", + "description": null, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": "Count" + } + } + ] + } + ], + "dashboards": [], + "embeddedDatasources": [ + { + "__typename": "EmbeddedDatasource", + "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38", + "name": "test publish datasource", + "hasExtracts": false, + "extractLastRefreshTime": null, + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": null, + "upstreamDatabases": [ + { + "id": "a7825692-7de9-113d-5377-ae113331a9ec", + "name": "dvdrental", + "connectionType": "postgres", + "isEmbedded": false + } + ], + "upstreamTables": [ + { + "id": "39657832-0769-6372-60c3-687a51e2a772", + "name": "customer", + "schema": "", + "fullName": "customer", + "connectionType": "postgres", + "description": "", + "columns": [] }, { - "__typename": "HierarchyField", - "id": "abc46509-3c0d-88fc-882a-d304ae076143", - "name": "State, City", - "description": null, - "isHidden": false, - "folderName": null + "id": "3cdd0522-44ef-62eb-ba52-71545c258344", + "name": "payment", + "schema": "", + "fullName": "payment", + "connectionType": "postgres", + "description": "", + "columns": [] }, { - "__typename": "ColumnField", - "id": "b254bcdd-80a8-ad09-79a4-2291fdbc8835", - "name": "Date", + "id": "7df39af9-6767-4c9c-4120-155a024de062", + "name": "staff", + "schema": "", + "fullName": "staff", + "connectionType": "postgres", + "description": "", + "columns": [] + } + ], + "downstreamSheets": [ + { + "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", + "name": "published sheet ds" + } + ], + "fields": [ + { + "__typename": "DatasourceField", + "id": "0235103b-b83a-1380-8357-45b6e458202d", + "name": "customer_id", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": "Year", - "columns": [ - { - "table": {} - } - ] + "folderName": null }, { - "__typename": "CalculatedField", - "id": "b5e2b3f8-b7b5-8a09-bc0f-a2fdac028760", - "name": "Minutes of Delay per Flight", + "__typename": "DatasourceField", + "id": "494eb750-ceb8-5000-e42b-f5889389c62b", + "name": "Custom SQL Query", "description": null, "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "n#,##0;-#,##0", - "aggregation": null, - "formula": "[Minutes of Delay]/[Number of Flights]" + "folderName": null }, { - "__typename": "ColumnField", - "id": "d0e5246e-24c3-3954-5a45-4c18ffdcbbae", - "name": "Airport Code", + "__typename": "DatasourceField", + "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", + "name": "staff_last_name", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] + "folderName": null }, { - "__typename": "CalculatedField", - "id": "d4d03424-f81a-723c-40e9-eb546477583a", - "name": "% of Delayed Flights", + "__typename": "DatasourceField", + "id": "79ab36f4-e1f3-ec9a-13c6-e7658f3ed563", + "name": "staff_first_name", "description": null, "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "formula": "Sum(if contains([Ontime Category], \"Delayed\") then [Number of Flights] else 0 end)/sum([Number of Flights])" + "folderName": null }, { - "__typename": "ColumnField", - "id": "dd808e37-172b-aebc-abc7-a91d0b74027a", - "name": "Number of Flights", + "__typename": "DatasourceField", + "id": "8dbd31bb-460f-bb52-3b26-d0b4b5df875e", + "name": "customer_last_name", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] + "folderName": null }, { - "__typename": "ColumnField", - "id": "e6aab212-0caa-ca6a-af3c-9f42792c8965", - "name": "Carrier Name", + "__typename": "DatasourceField", + "id": "c058d792-9f88-8642-4e63-682cfb6382af", + "name": "amount", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] + "folderName": null }, { - "__typename": "ColumnField", - "id": "f0685d9c-19d1-7d41-b276-9d6bd55feb4f", - "name": "Airport Name", + "__typename": "DatasourceField", + "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", + "name": "customer_first_name", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] + "folderName": null }, { - "__typename": "ColumnField", - "id": "f731d3c5-74d9-70d6-f780-410c52d7b44b", - "name": "Flight", + "__typename": "DatasourceField", + "id": "ddadd012-bcdb-2ddd-9021-c590410c3e59", + "name": "payment_date", "description": null, "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] + "folderName": null + } + ], + "upstreamDatasources": [ + { + "name": "test publish datasource" } ], - "upstreamDatasources": [], "workbook": { - "name": "Regional", + "name": "Workbook published ds", "projectName": "default" } } + ], + "upstreamDatasources": [ + { + "id": "00cce29f-b561-bb41-3557-8e19660bb5dd", + "name": "test publish datasource", + "downstreamSheets": [ + { + "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", + "name": "published sheet ds" + } + ] + } ] } ], @@ -37918,7 +21810,7 @@ "hasNextPage": false, "endCursor": null }, - "totalCount": 8 + "totalCount": 3 } } } \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json index 7993783da5702b..755d66eef84dce 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json @@ -39496,12 +39496,12 @@ { "auditHeader": null, "entityType": "container", - "entityUrn": "urn:li:container:a1def6519abcbec675e70ee1efa0a011", + "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"7e970a24-304e-3d8f-cc34-1218efefac84\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15604\", \"name\": \"InMail Engagement\", \"description\": \"\"}", + "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"bd040833-8f66-22c0-1b51-bd4ccf5eef7c\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/17904\", \"name\": \"Workbook published ds\", \"description\": \"\"}", "contentType": "application/json" }, "systemMetadata": { @@ -39515,7 +39515,7 @@ { "auditHeader": null, "entityType": "container", - "entityUrn": "urn:li:container:a1def6519abcbec675e70ee1efa0a011", + "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", @@ -39534,7 +39534,7 @@ { "auditHeader": null, "entityType": "container", - "entityUrn": "urn:li:container:a1def6519abcbec675e70ee1efa0a011", + "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", @@ -39553,7 +39553,7 @@ { "auditHeader": null, "entityType": "container", - "entityUrn": "urn:li:container:a1def6519abcbec675e70ee1efa0a011", + "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", @@ -39573,34 +39573,26 @@ "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,091c8f7a-0b0d-a80a-9dac-9e2e699bff08)", + "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", "aspects": [ { "com.linkedin.pegasus2avro.chart.ChartInfo": { "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Created At": "", - "Seat Id": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "First Name": "" + "staff_last_name": "", + "amount": "", + "customer_first_name": "" }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Number of InMail Sent", - "title": "Number of InMail Sent", + "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", + "title": "published sheet ds", "description": "", "lastModified": { "created": { - "time": 1639768379000, + "time": 1641951867000, "actor": "urn:li:corpuser:jawadqu@gmail.com", "impersonator": null }, "lastModified": { - "time": 1639768398000, + "time": 1642658093000, "actor": "urn:li:corpuser:jawadqu@gmail.com", "impersonator": null }, @@ -39609,113 +39601,10 @@ "chartUrl": null, "inputs": [ { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Number of InMail Sent" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,091c8f7a-0b0d-a80a-9dac-9e2e699bff08)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,0b359c2f-7d7d-3de8-77c8-f8be2fbacae5)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Measure Names": "", - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Tooltip: volume InMail sent vs accepted by time of day and weekday", - "title": "Tooltip: volume InMail sent vs accepted by time of day and weekday", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)" }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" + "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)" } ], "type": null, @@ -39726,7 +39615,7 @@ { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/tableau/default/InMail Engagement/Tooltip: volume InMail sent vs accepted by time of day and weekday" + "/tableau/default/Workbook published ds/published sheet ds" ] } }, @@ -39761,12 +39650,12 @@ { "auditHeader": null, "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,0b359c2f-7d7d-3de8-77c8-f8be2fbacae5)", + "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", + "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", "contentType": "application/json" }, "systemMetadata": { @@ -39780,58 +39669,13 @@ { "auditHeader": null, "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,0c58dcc2-89c5-5db3-7507-baceafd58d8a)", + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/InMail Response Rate", - "title": "InMail Response Rate", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/tableau/default/InMail Engagement/InMail Response Rate" + "/prod/tableau/default/test publish datasource/test publish datasource.d8d4c0ea-3162-fa11-31e6-26675da44a38" ] } }, @@ -39850,81213 +39694,338 @@ "impersonator": null } } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,0c58dcc2-89c5-5db3-7507-baceafd58d8a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,32a31217-0d14-7251-8179-15f825ed24bc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Measure Names": "", - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Tooltip: volume InMail sent vs accepted by time of day", - "title": "Tooltip: volume InMail sent vs accepted by time of day", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Tooltip: volume InMail sent vs accepted by time of day" - ] - } }, { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,32a31217-0d14-7251-8179-15f825ed24bc)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,3aaaa573-1a8d-7cc8-cb53-7b0123da92fd)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { + "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/All Team Memeber Engagement", - "title": "All Team Memeber Engagement", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "hasExtracts": "False", + "extractLastRefreshTime": "", + "extractLastIncrementalUpdateTime": "", + "extractLastUpdateTime": "", + "type": "EmbeddedDatasource" }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/All Team Memeber Engagement" - ] + "externalUrl": null, + "name": "test publish datasource", + "qualifiedName": null, + "description": null, + "uri": null, + "tags": [] } }, { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "test", + "platform": "urn:li:dataPlatform:tableau", + "version": 0, + "created": { "time": 0, "actor": "urn:li:corpuser:unknown", "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,3aaaa573-1a8d-7cc8-cb53-7b0123da92fd)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,59975b4b-60d2-1795-be72-0c894824ae7e)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Weekday by time of day response rate heatmap", - "title": "Weekday by time of day response rate heatmap", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Weekday by time of day response rate heatmap" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown", "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,59975b4b-60d2-1795-be72-0c894824ae7e)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,75c97c18-9277-795d-da22-f40c5c7d7dee)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/InMail response rate by time of day", - "title": "InMail response rate by time of day", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/InMail response rate by time of day" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "deleted": null, + "dataset": null, + "cluster": null, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.OtherSchema": { + "rawSchema": "" } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,75c97c18-9277-795d-da22-f40c5c7d7dee)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,8dafd980-4072-705e-8a8d-5d7f162fdcd2)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "Top Acceptance Rate?": "Tests data for top ranked response rate. Right click and select edit for more info\n\nformula: // This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Best Time to Send InMails", - "title": "Best Time to Send InMails", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Best Time to Send InMails" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8dafd980-4072-705e-8a8d-5d7f162fdcd2)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,b8182e39-23c2-0ee0-72bb-3e2f390b6072)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/InMail response by weekday", - "title": "InMail response by weekday", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/InMail response by weekday" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b8182e39-23c2-0ee0-72bb-3e2f390b6072)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,bc17caa4-58af-8eca-2bdc-6d4781cf98aa)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Measure Names": "", - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Tooltip: volume InMail sent vs accepted by weekday", - "title": "Tooltip: volume InMail sent vs accepted by weekday", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Tooltip: volume InMail sent vs accepted by weekday" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,bc17caa4-58af-8eca-2bdc-6d4781cf98aa)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,c0b38367-f999-7c8f-5ce9-ff27ee01951a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Measure Names": "", - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/InMail Response Rate Timeline", - "title": "InMail Response Rate Timeline", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/InMail Response Rate Timeline" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,c0b38367-f999-7c8f-5ce9-ff27ee01951a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,f08c9444-4902-7fa2-b4c7-5539effee2a0)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Full Name": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "Number of Records": "formula: 1", - "Number of InMail Accepted": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "Created At": "", - "Seat Id": "", - "Activity Type (Activities Outcome)": "", - "Contract Id": "", - "Last Name": "", - "Created At (local time)": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "Number of InMail Sent": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "Activity Type": "", - "Time of Day": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "InMail Acceptance Rate": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "Top Acceptance Rate?": "Tests data for top ranked response rate. Right click and select edit for more info\n\nformula: // This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1", - "First Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/InMailEngagement/InMailEngagement/Best Day to Send InMails", - "title": "Best Day to Send InMails", - "description": "", - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/Best Day to Send InMails" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,f08c9444-4902-7fa2-b4c7-5539effee2a0)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,03e74eaf-4fb0-4973-e555-ab90f9f8f265)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "InMail Engagement", - "description": "", - "charts": [ - "urn:li:chart:(tableau,091c8f7a-0b0d-a80a-9dac-9e2e699bff08)", - "urn:li:chart:(tableau,0b359c2f-7d7d-3de8-77c8-f8be2fbacae5)", - "urn:li:chart:(tableau,0c58dcc2-89c5-5db3-7507-baceafd58d8a)", - "urn:li:chart:(tableau,32a31217-0d14-7251-8179-15f825ed24bc)", - "urn:li:chart:(tableau,3aaaa573-1a8d-7cc8-cb53-7b0123da92fd)", - "urn:li:chart:(tableau,59975b4b-60d2-1795-be72-0c894824ae7e)", - "urn:li:chart:(tableau,75c97c18-9277-795d-da22-f40c5c7d7dee)", - "urn:li:chart:(tableau,8dafd980-4072-705e-8a8d-5d7f162fdcd2)", - "urn:li:chart:(tableau,b8182e39-23c2-0ee0-72bb-3e2f390b6072)", - "urn:li:chart:(tableau,bc17caa4-58af-8eca-2bdc-6d4781cf98aa)", - "urn:li:chart:(tableau,c0b38367-f999-7c8f-5ce9-ff27ee01951a)", - "urn:li:chart:(tableau,f08c9444-4902-7fa2-b4c7-5539effee2a0)" - ], - "lastModified": { - "created": { - "time": 1639768379000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639768398000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/InMailEngagement/InMailEngagement", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/InMail Engagement/InMail Engagement" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,03e74eaf-4fb0-4973-e555-ab90f9f8f265)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "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,69e215a8-0d95-7c01-9868-4d5b7e5b364f,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:webdata-direct:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:linkedin-snap,Sales Navigator Connection.Activity,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Sales Navigator Connection.69e215a8-0d95-7c01-9868-4d5b7e5b364f" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2019-01-19T00:37:24Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2019-01-19T00:37:24Z", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Sales Navigator Connection", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Measure Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Connections", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Full Name", - "jsonPath": null, - "nullable": false, - "description": "A calculated field to bring together first and last names. Right click and select edit for more info\n\nformula: // Simple calculation to combine the first and last name fields\r\n// creating a full name field\r\n\r\n[First Name] + ' ' + [Last Name]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ssi Find Right People", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of InMail Accepted", - "jsonPath": null, - "nullable": false, - "description": "Isolates records with \"INMAIL_ACCEPTED\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is Accepted\r\n// a measure is produced for the number of InMail accepted\r\n\r\n\r\nIF [Activity Type (Activities Outcome)] = 'INMAIL_ACCEPTED' \r\nTHEN [Number of Records]\r\nELSE NULL \r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Created At", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Seat Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Created At (Activities Outcome)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Type (Activities Outcome)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contract Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ssi Create Professional Brand", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Member Identity Key", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "totalSavedLeads", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Migrated Data", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Member Identity Key (Activities Outcome)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Created At (local time)", - "jsonPath": null, - "nullable": false, - "description": "Works with the \"Timezone\" parameter to dynamically adjust timezones. Right click and select edit for more info\n\nformula: // This is a date calculation referencing a parameter\r\n// to account for differing timezones\r\n// essentially it adds/subtracts the number of hours required to convert to a specific timezone\r\n// the value for hours is contained in the parameter (purple) \r\n// therefore when selecting a different timezone in the parameter the value in this calculation is also changed\r\n// right click and select edit on the \"Timezone\" parameter to see how it is set up\r\n\r\nDATEADD('hour',[Timezone], [Created At])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of InMail Sent", - "jsonPath": null, - "nullable": false, - "description": "Isolates records with \"INMAIL_SENT\" and counts them. Right click and select edit for more info\n\nformula: // this is an IF statement\r\n// by counting only the number of records for only activity where InMail is sent\r\n// a measure is produced for the number of InMail sent\r\n\r\n\r\nIF [Activity Type] = 'INMAIL_SENT' \r\nTHEN [Number of Records]\r\nELSE 0 \r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Created At (Unique Seats)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Id (Activities Outcome)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ssi", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Measure Values", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Time of Day", - "jsonPath": null, - "nullable": false, - "description": "Categorises the hours of the day into parts of the day such as \"morning\". Right click and select edit for more info\n\nformula: // This is an IF statement \r\n// Used to Categorise the 24 hours of a day into parts of the day i.e morning\r\n// scale is 0-23 NOT 1-24\r\n\r\n\r\nIF DATEPART('hour',[Created At (local time)]) >=1 \r\n AND DATEPART('hour',[Created At (local time)]) <6 \r\n THEN \"Early AM\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=6 \r\n AND DATEPART('hour',[Created At (local time)]) <12 \r\n THEN \"Morning\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=12 \r\n AND DATEPART('hour',[Created At (local time)]) <15 \r\n THEN \"Lunch\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=15 \r\n AND DATEPART('hour',[Created At (local time)]) <18 \r\n THEN \"Afternoon\"\r\n\r\nELSEIF DATEPART('hour',[Created At (local time)]) >=18 \r\n AND DATEPART('hour',[Created At (local time)]) <20 \r\n THEN \"Evening\"\r\n\r\nELSE \"Night\"\r\n\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ssi Engage With Insights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "totalSavedAccounts", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "InMail Acceptance Rate", - "jsonPath": null, - "nullable": false, - "description": "Calculates response rate. Right click and select edit for more info\n\nformula: // sum of the number of InMail accepted\r\n// divided by \r\n// sum of the number of InMail sent \r\n\r\n\r\nSUM([Number of InMail Accepted]) / SUM([Number of InMail Sent])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Top Acceptance Rate?", - "jsonPath": null, - "nullable": false, - "description": "Tests data for top ranked response rate. Right click and select edit for more info\n\nformula: // This is a boolean with a table calculation \r\n// first the table calculation will rank the response rate uniquely (1,2,3,4)\r\n// then the boolean will test the table drawn for a true or false condition\r\n// in this case only returning the #1 ranked response rate\r\n\r\n\r\nRANK_UNIQUE([InMail Acceptance Rate]) = 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ssi Build Strong Relationship", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Recorded At", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Seat Id (Unique Seats)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,69e215a8-0d95-7c01-9868-4d5b7e5b364f,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:a1def6519abcbec675e70ee1efa0a011\"}", - "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:marketo-marketo,Marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/activity6" - ] - } - }, - { - "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": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/activity11" - ] - } - }, - { - "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": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/activity10" - ] - } - }, - { - "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": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:marketo-marketo,Marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/activity7" - ] - } - }, - { - "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": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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: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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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:postgres,dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/address" - ] - } - }, - { - "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": "postal_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "city_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "district", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:postgres,dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/actor" - ] - } - }, - { - "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": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "actor_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.People,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/People" - ] - } - }, - { - "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": "Person", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Returns" - ] - } - }, - { - "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": "Returned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Orders" - ] - } - }, - { - "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": "Product ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country/Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Segment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sub-Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Profit", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Product Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Row ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Discount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Mode", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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.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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/UniqueSeat" - ] - } - }, - { - "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": "ssiCreateProfessionalBrand", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssi", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiBuildStrongRelationship", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiFindRightPeople", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "totalConnections", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "contractId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiEngageWithInsights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "firstName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "recordedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "lastName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.Activity,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Activity" - ] - } - }, - { - "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": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/ActivityOutcome" - ] - } - }, - { - "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": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityOutcomeType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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": "container", - "entityUrn": "urn:li:container:d928ffc575cc24f3e59b460fd997a690", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"a6c3a345-a85d-64ca-934f-e4049616cd27\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15996\", \"name\": \"Email Performance in Project 2\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:d928ffc575cc24f3e59b460fd997a690", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:d928ffc575cc24f3e59b460fd997a690", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:d928ffc575cc24f3e59b460fd997a690", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "ownership", - "aspect": { - "value": "{\"owners\": [{\"owner\": \"urn:li:corpuser:jawadqu@gmail.com\", \"type\": \"DATAOWNER\"}], \"lastModified\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,1569379c-c55f-cbb1-2d56-99c257ffd2da)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Id": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "ID": "", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Active": "", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "Id (Activity - Email Delivered)": "", - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Sent Email": "formula: COUNTD([Id])", - "Clickthrough Rate": "formula: [Clickthrough Emails]/[Delivered Email]", - "Activity Date": "", - "Id (Activity - Open Email)": "", - "Program Name": "", - "Id (Activity - Click Email)": "", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Name": "", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])", - "Measure Names": "", - "Measure Values": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformance/EmailPerformancebyCampaign/Summary", - "title": "Summary", - "description": "", - "lastModified": { - "created": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642482167000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/Project 2/Email Performance in Project 2/Summary" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,1569379c-c55f-cbb1-2d56-99c257ffd2da)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,48105ce8-e907-377f-59bc-d2f36f57d670)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Id": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "ID": "", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Active": "", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "Id (Activity - Email Delivered)": "", - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Sent Email": "formula: COUNTD([Id])", - "Clickthrough Rate": "formula: [Clickthrough Emails]/[Delivered Email]", - "Activity Date": "", - "Id (Activity - Open Email)": "", - "Program Name": "", - "Id (Activity - Click Email)": "", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Name": "", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformance/EmailPerformancebyCampaign/Campaign List", - "title": "Campaign List", - "description": "", - "lastModified": { - "created": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642482167000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/Project 2/Email Performance in Project 2/Campaign List" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,48105ce8-e907-377f-59bc-d2f36f57d670)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,5a63b6b2-d8cc-1cb2-6e14-ea872eba5d37)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Id": "", - "ID": "", - "Active": "", - "Activity Date": "", - "Program Name": "", - "Name": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformance/EmailPerformancebyCampaign/Timeline - Sent", - "title": "Timeline - Sent", - "description": "", - "lastModified": { - "created": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642482167000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/Project 2/Email Performance in Project 2/Timeline - Sent" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,5a63b6b2-d8cc-1cb2-6e14-ea872eba5d37)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,fd1dec03-9c6d-d043-a18d-4f1fb05e093d)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Id": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "ID": "", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "Id (Activity - Email Delivered)": "", - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Sent Email": "formula: COUNTD([Id])", - "Activity Date": "", - "Id (Activity - Open Email)": "", - "Program Name": "", - "Id (Activity - Click Email)": "", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Name": "", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformance/EmailPerformancebyCampaign/Mobile - Sent by Campaign", - "title": "Mobile - Sent by Campaign", - "description": "", - "lastModified": { - "created": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642482167000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/Project 2/Email Performance in Project 2/Mobile - Sent by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,fd1dec03-9c6d-d043-a18d-4f1fb05e093d)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,2897f2f9-2b5e-e3f6-a8f7-53e4b37a0b97)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "Email Performance by Campaign", - "description": "", - "charts": [ - "urn:li:chart:(tableau,1569379c-c55f-cbb1-2d56-99c257ffd2da)", - "urn:li:chart:(tableau,48105ce8-e907-377f-59bc-d2f36f57d670)", - "urn:li:chart:(tableau,5a63b6b2-d8cc-1cb2-6e14-ea872eba5d37)", - "urn:li:chart:(tableau,fd1dec03-9c6d-d043-a18d-4f1fb05e093d)" - ], - "lastModified": { - "created": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1640200264000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformance/EmailPerformancebyCampaign", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/Project 2/Email Performance in Project 2/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,2897f2f9-2b5e-e3f6-a8f7-53e4b37a0b97)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "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,23baba4e-08c4-bd26-debe-58bd03a0ca20,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:webdata-direct:marketo-marketo,Marketo.activity6,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,Marketo.activity11,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,Marketo.campaignsTable,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,Marketo.activity10,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,Marketo.activity7,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/Marketo.23baba4e-08c4-bd26-debe-58bd03a0ca20" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Marketo", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Clickthrough Emails", - "jsonPath": null, - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Click Email)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step ID (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice Number (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test Variant (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Opened Email", - "jsonPath": null, - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Open Email)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign Run ID (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is Mobile Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Delivered Email", - "jsonPath": null, - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Email Delivered)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Non Opened Email", - "jsonPath": null, - "nullable": false, - "description": "formula: [Delivered Email]-[Opened Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Id (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step ID (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead ID (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Delivery Rate", - "jsonPath": null, - "nullable": false, - "description": "formula: ZN([Delivered Email]/[Sent Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sent Email", - "jsonPath": null, - "nullable": false, - "description": "formula: COUNTD([Id])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Workspace Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Date (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Clickthrough Rate", - "jsonPath": null, - "nullable": false, - "description": "formula: [Clickthrough Emails]/[Delivered Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign Run ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Opened Non Clicked Emails", - "jsonPath": null, - "nullable": false, - "description": "formula: [Opened Email]-[Clickthrough Emails]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Migrated Data", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead ID (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice Number (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Non Clickthrough Email", - "jsonPath": null, - "nullable": false, - "description": "formula: [Delivered Email]-[Clickthrough Emails]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Date (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test Variant (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Updated At", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Id (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing ID (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Program Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step ID (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Id (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice Number (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing ID (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has Predictive (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead ID (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has Predictive (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test Variant (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Click-to-Open", - "jsonPath": null, - "nullable": false, - "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign Run ID (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Bounceback", - "jsonPath": null, - "nullable": false, - "description": "formula: [Sent Email] - [Delivered Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign Run ID (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing ID (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Created At", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is Mobile Device (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Date (Activity - Email Delivered)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Open Rate", - "jsonPath": null, - "nullable": false, - "description": "formula: ZN([Opened Email]/[Delivered Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Program ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User Agent (Activity - Click Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Measure Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID (Activity - Open Email)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Measure Values", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,23baba4e-08c4-bd26-debe-58bd03a0ca20,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:d928ffc575cc24f3e59b460fd997a690\"}", - "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:marketo-marketo,Marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity6" - ] - } - }, - { - "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": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity11" - ] - } - }, - { - "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": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity10" - ] - } - }, - { - "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": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity7" - ] - } - }, - { - "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": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.campaignsTable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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:postgres,dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/address" - ] - } - }, - { - "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": "postal_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "city_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "district", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:postgres,dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/actor" - ] - } - }, - { - "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": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "actor_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.People,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/People" - ] - } - }, - { - "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": "Person", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Returns" - ] - } - }, - { - "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": "Returned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Orders" - ] - } - }, - { - "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": "Product ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country/Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Segment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sub-Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Profit", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Product Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Row ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Discount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Mode", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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.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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/UniqueSeat" - ] - } - }, - { - "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": "ssiCreateProfessionalBrand", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssi", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiBuildStrongRelationship", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiFindRightPeople", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "totalConnections", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "contractId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiEngageWithInsights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "firstName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "recordedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "lastName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.Activity,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Activity" - ] - } - }, - { - "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": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/ActivityOutcome" - ] - } - }, - { - "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": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityOutcomeType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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": "container", - "entityUrn": "urn:li:container:c71c7fa414f7fbe789c493af10bbe004", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"b487ae25-e473-d8b3-eefb-8df8eecbc419\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15626\", \"name\": \"Account Engagement\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:c71c7fa414f7fbe789c493af10bbe004", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:c71c7fa414f7fbe789c493af10bbe004", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:c71c7fa414f7fbe789c493af10bbe004", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "ownership", - "aspect": { - "value": "{\"owners\": [{\"owner\": \"urn:li:corpuser:jawadqu@gmail.com\", \"type\": \"DATAOWNER\"}], \"lastModified\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,474d4fe3-8b71-15a6-f77d-9f2476f1a55d)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "Company": "", - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Hour", - "title": "Hour", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Hour" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,474d4fe3-8b71-15a6-f77d-9f2476f1a55d)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,49d0dd61-5159-4bce-a6ea-c87ec194a82a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "Measure Values": "", - "Company": "", - "Measure Names": "", - "Activity Type": "", - "Activity Date": "", - "Total Web Visits": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"webvisit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"WebVisit\"\r\nTHEN [Activity Id]\r\nEND)", - "Total Page Views": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"pageview\"\r\n\r\nCOUNTD(IF [Activity Type]= \"PageView\"\r\nTHEN [Activity Id]\r\nEND)", - "Total Forms Submitted": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"formsubmit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"FormSubmit\"\r\nTHEN [Activity Id]\r\nEND)" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Summary (2)", - "title": "Summary (2)", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Summary (2)" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,49d0dd61-5159-4bce-a6ea-c87ec194a82a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,5e9fc696-cf8b-46f4-cdf6-f94b6372dd5a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Control Activity Type", - "title": "Control Activity Type", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Control Activity Type" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,5e9fc696-cf8b-46f4-cdf6-f94b6372dd5a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,6993c2a5-23d4-324b-00b5-4ba529b70744)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Company": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/AccountEngagement/Sheet10", - "title": "Acct Engage Sheet", - "description": "", - "lastModified": { - "created": { - "time": 1642744003000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Acct Engage Sheet" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,6993c2a5-23d4-324b-00b5-4ba529b70744)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,8421f93a-39ac-201c-4584-5d600adadfa9)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "Company": "", - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Activities", - "title": "Activities", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Activities" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8421f93a-39ac-201c-4584-5d600adadfa9)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,91ae8684-a735-a5cc-3a0b-8effba5d9c6a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Title", - "title": "Title", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Title" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,91ae8684-a735-a5cc-3a0b-8effba5d9c6a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,94f36fc7-af96-c61d-761f-08bd3aeb7397)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "Company": "", - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Timeline of Activity", - "title": "Timeline of Activity", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Timeline of Activity" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,94f36fc7-af96-c61d-761f-08bd3aeb7397)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,9f17eae4-e288-997a-0750-7b588c7ca6e7)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "First and Last Name": "", - "Company": "", - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Contacts", - "title": "Contacts", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Contacts" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,9f17eae4-e288-997a-0750-7b588c7ca6e7)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,b37b5bdf-c832-a3b0-840b-3e45ca4c34cd)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Activity Id": "", - "Company": "", - "Activity Type": "", - "Activity Date": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Weekday", - "title": "Weekday", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Weekday" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b37b5bdf-c832-a3b0-840b-3e45ca4c34cd)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,d7fa541c-01d2-e6d7-b91e-c1a712a6538c)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Industry": "", - "Contacts Total": "formula: // It is a COUNTD expression\r\n// It returns the number of distinc contact IDs\r\n\r\nCOUNTD([Contact ID])", - "Activities per Contact": "formula: // It is an expression\r\n// It calculates the number of activities per contact\r\n\r\nCOUNTD([Activity Id])/COUNTD([Contact Id])", - "Activity Id": "", - "Measure Values": "", - "Activies Total": "formula: // It is a COUNTD expression\r\n// It returns the number of distinc activity IDs\r\n\r\nCOUNTD([Activity Id])", - "Company": "", - "Measure Names": "", - "Activity Type": "", - "Activity Date": "", - "Contact Id": "", - "Contact ID": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/AccountEngagement/AccountEngagement/Summary", - "title": "Summary", - "description": "", - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Summary" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,d7fa541c-01d2-e6d7-b91e-c1a712a6538c)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,837471b1-5105-d533-b3c6-0f0f06a4ab8e)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "Account Engagement", - "description": "", - "charts": [ - "urn:li:chart:(tableau,474d4fe3-8b71-15a6-f77d-9f2476f1a55d)", - "urn:li:chart:(tableau,49d0dd61-5159-4bce-a6ea-c87ec194a82a)", - "urn:li:chart:(tableau,5e9fc696-cf8b-46f4-cdf6-f94b6372dd5a)", - "urn:li:chart:(tableau,8421f93a-39ac-201c-4584-5d600adadfa9)", - "urn:li:chart:(tableau,91ae8684-a735-a5cc-3a0b-8effba5d9c6a)", - "urn:li:chart:(tableau,94f36fc7-af96-c61d-761f-08bd3aeb7397)", - "urn:li:chart:(tableau,9f17eae4-e288-997a-0750-7b588c7ca6e7)", - "urn:li:chart:(tableau,b37b5bdf-c832-a3b0-840b-3e45ca4c34cd)", - "urn:li:chart:(tableau,d7fa541c-01d2-e6d7-b91e-c1a712a6538c)" - ], - "lastModified": { - "created": { - "time": 1639775536000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642744032000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/AccountEngagement/AccountEngagement", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Account Engagement/Account Engagement" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,837471b1-5105-d533-b3c6-0f0f06a4ab8e)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "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,5d799114-ac20-cff0-ddea-705dabba7856,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:oracle,Oracle Eloqua.activitiesAll,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:oracle,Oracle Eloqua.contacts,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,5d799114-ac20-cff0-ddea-705dabba7856,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/Oracle Eloqua.5d799114-ac20-cff0-ddea-705dabba7856" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2017-12-28T18:43:34Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2017-12-28T18:43:34Z", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Oracle Eloqua", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "SFDC Lead Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adgroup", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "LS - High Value Website Content", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua Slice Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Record Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Fax", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Webinar ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Processing Control", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "External Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student Verification Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "PURL Name (Try)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Pages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel Manager Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last SFDC Campaign Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Visits", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua Program", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256 Hashed Email Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID - Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Authorized User Check on Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC Territory ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "T-Shirt Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contacts Total", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is a COUNTD expression\r\n// It returns the number of distinc contact IDs\r\n\r\nCOUNTD([Contact ID])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial Start Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Address Domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Web Site", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua Slice Hash", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Evaluation Team Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Asset Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B CEO Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Source - Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner Point of Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SIC Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Primed Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address 3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "HAT Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Global Parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Zip or Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission Source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Contact Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Display Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activities per Contact", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is an expression\r\n// It calculates the number of activities per contact\r\n\r\nCOUNTD([Activity Id])/COUNTD([Contact Id])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Partner Agreement Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Parent Account", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Zip", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Web Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Email Received Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account User Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online Trial Start Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial Request", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Annual Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC Date Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buy Registration Date - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Distribution", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referring Source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Subject Line", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Job Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel OnDemand Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5 Hashed Business Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Data Geek Profile", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TFT Course Expiration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name Analyzer - Gender Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last SFDC Campaign ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number Of Pages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ProServ Opportunty ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Score (Contacts)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First and Last Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "zzLead Score - TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice Last Modified Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "BrightTALK User ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contacting Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua Slice Score - Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B SIC Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Confidence Level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Form Submission", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner Program Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesnet Account ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Source Detail - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "CIBC - Trial Portal - TPEP - 2015-02-18", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Measure Values", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256 Hashed Mobile Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server Trial End Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activies Total", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is a COUNTD expression\r\n// It returns the number of distinc activity IDs\r\n\r\nCOUNTD([Activity Id])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Why Remarket?", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Established In", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is Web Tracking Opted In", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Total Employees Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Notification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact ID EXT", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Raw Data", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Annual Sales Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salutation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "RBC - Trial Portal - TPEP - 2015-02-18", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Area Of Interest", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "License Key Offline Activation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Migrated Data", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel Manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted Lead Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5 Hashed Email Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deployment Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Score - TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Sub Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Standard Form", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted Contact Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Measure Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Nurture Track", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Score - Historical All-Time (HAT)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Preferred Language", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Annual Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "High Touch?", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mobile Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sensitivity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referring Keyword", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Business Structure", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referrer Url", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Visit Date and Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Score Date - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address 1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adused", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Rating - Historical All-Time (HAT)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Rating - Last (SPOI)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Sic", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online Trial Exp Date - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First Page View Url", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial Task Exclusion", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua Slice Modified Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Create Lead Hold", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAE", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice Score - Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Visitor Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Author Profiles - URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5 Hashed Mobile Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Microsoft Custom URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Source Detail - Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission Medium", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256 Hashed Business Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Viz ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Session", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Master Asset - temp", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial Exp Date - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Clicked Thru Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buying Horizon", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial Product - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Visitor External Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Send Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Marketing Opt Out - For Harvested Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TC14 Confirmation Code - Attendees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Open Grade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Bizo ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Qualifying Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Language Site - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword - Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address 2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Url", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SheerID Manual Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice Prime Exclude", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MS CRM Account ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC Account ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua GUID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server Trial Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ID Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Employee Count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact Us Request Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner Agreement on File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment 3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Business Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student Verification ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Source - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket Details", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact Owner ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Password", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Total Employees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last SFDC Campaign Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Asset Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B DUNS Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Web Visits", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"webvisit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"WebVisit\"\r\nTHEN [Activity Id]\r\nEND)", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Reason Primed - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Owner ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSLA on File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Opt-in Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment 1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Territory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Asset", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis Software Used", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Asset Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account Partner Program Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Teleteam Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Appointment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Website Visit Date and Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Opt-In", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State or Province", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referring Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Campaign", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Department", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite Company ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Do Not Process", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix Account ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel OnDemand Account ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Doing Business As", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Known User", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TQL Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "D&B Annual Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Record Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referr's Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NNC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Page Views", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"pageview\"\r\n\r\nCOUNTD(IF [Activity Type]= \"PageView\"\r\nTHEN [Activity Id]\r\nEND)", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "External Notification Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Modified by CRM System", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign ID - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis Types", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment 2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite Lead ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "No Promo", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ip Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesnet OwnerID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Browser Language - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner TSI Birthday", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Dept", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "StrikeIron Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email Recipient Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AWS AccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC EmailOptOut", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Job Level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date Modified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword - Most Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Web Visit Id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Db Title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ESD Access on Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Subscription Page Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel OnDemand Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesnet Contact ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total Forms Submitted", - "jsonPath": null, - "nullable": false, - "description": "formula: // It is a calculation combining a COUNTD expression and an IF statement\r\n// It counts the IDs of all distinct activties marked as \"formsubmit\"\r\n\r\nCOUNTD(IF [Activity Type]= \"FormSubmit\"\r\nTHEN [Activity Id]\r\nEND)", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name Analyzer - Validation Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Highest Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,5d799114-ac20-cff0-ddea-705dabba7856,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,5d799114-ac20-cff0-ddea-705dabba7856,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:c71c7fa414f7fbe789c493af10bbe004\"}", - "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:marketo-marketo,Marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity6" - ] - } - }, - { - "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": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity11" - ] - } - }, - { - "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": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity10" - ] - } - }, - { - "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": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity7" - ] - } - }, - { - "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": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.campaignsTable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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:postgres,dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/address" - ] - } - }, - { - "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": "postal_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "city_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "district", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:postgres,dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/actor" - ] - } - }, - { - "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": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "actor_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.People,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/People" - ] - } - }, - { - "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": "Person", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Returns" - ] - } - }, - { - "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": "Returned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Orders" - ] - } - }, - { - "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": "Product ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country/Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Segment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sub-Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Profit", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Product Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Row ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Discount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Mode", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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.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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/UniqueSeat" - ] - } - }, - { - "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": "ssiCreateProfessionalBrand", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssi", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiBuildStrongRelationship", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiFindRightPeople", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "totalConnections", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "contractId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiEngageWithInsights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "firstName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "recordedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "lastName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.Activity,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Activity" - ] - } - }, - { - "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": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/ActivityOutcome" - ] - } - }, - { - "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": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityOutcomeType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:oracle,Oracle Eloqua.activitiesAll,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/activitiesAll" - ] - } - }, - { - "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": "ExternalId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NumberOfPages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "RawData", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IsWebTrackingOptedIn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Url", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "VisitorExternalId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ReferrerUrl", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "FirstPageViewUrl", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailAddress", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailRecipientId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "VisitorId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailClickedThruLink", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SubjectLine", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DeploymentId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityDate", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IpAddress", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "WebVisitId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailWebLink", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ContactId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "CampaignId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailSendType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:oracle,Oracle Eloqua.contacts,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/contacts" - ] - } - }, - { - "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": "Email_Address_Domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Appointment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Medium", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Record_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesnet_OwnerID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_annual_sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "zzLead_Score__TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Form_Submission", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Agreement_on_File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "LS__High_Value_Website_Content", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_sic", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Parent_Account", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Create_Lead_Hold", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "referring_keyword", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket_Details", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Marketing_Opt_Out__For_Harvested_Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source_Detail__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email_Display_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Processing_Control", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Webinar_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Global_Parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "job_level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSLA_on_File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AWS_AccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAE", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Last_Modified_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ProServ_Opportunty_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_sub_industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Teleteam_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact_Us_Request_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Annual_Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Territory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TFT_Course_Expiration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Why_Remarket", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Rating__Last_SPOI", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Total_Employees_Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TShirt_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Record_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_web_site", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source_Detail__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_Date_Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Do_Not_Process", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Established_In", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Exp_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IDNumber", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCTerritoryID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Visit_Date_and_Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Program", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Standard_Form", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Master_Asset__temp", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Point_of_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesnetAccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referring_Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name_Analyzer__Gender_Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Nurture_Track", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesnetContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Microsoft_Custom_URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Rating__Historical_AllTime_HAT", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel_Manager_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score__Historical_AllTime_HAT", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Author_Profiles__URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_employee_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MS_CRM_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Website_Visit_Date_and_Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "License_Key_Offline_Activation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "CIBC__Trial_Portal__TPEP__20150218", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Data_Geek_Profile", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "adgroup", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Hash", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Subscription_Page_Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCLeadID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_Lead_Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Product__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Viz_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Business_Structure", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total_Pages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date_Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adused", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Optin_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "OptIn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Qualifying_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online_Trial_Exp_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Session", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score_247", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server_Trial_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Fax", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_EmailOptOut", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Annual_Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "email_notification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Email_Received_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date_Modified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Doing_Business_As", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Reason_Primed__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "distribution", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Job_Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buy_Registration_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted_Contact_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Dept", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "External_Notification_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Authorized_User_Check_on_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_and_Last_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "referring_source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server_Trial_End_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SheerID_Manual_Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salutation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total_Visits", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_TSI_Birthday", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "No_Promo", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Confidence_Level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted_Lead_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online_Trial_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, - "jsonProps": null - }, - { - "fieldPath": "DB_DUNS_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buying_Horizon", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_CEO_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Partner_Agreement_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "HAT_Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TQL_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_User_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State_or_Province", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referrs_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "RBC__Trial_Portal__TPEP__20150218", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Language_Site__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Task_Exclusion", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Browser_Language__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Campaign", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "StrikeIron_Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Score__Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_GUID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Open_Grade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact_Owner_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Preferred_Language", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Zip_or_Postal_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Area_Of_Interest", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Known_User", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel_Manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Program_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Modified_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Partner_Program_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NNC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Score__Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TC14_Confirmation_Code__Attendees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_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, - "jsonProps": null - }, - { - "fieldPath": "Company_Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Request", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_Owner_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Password", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Highest_Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_zip", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Annual_Sales_Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name_Analyzer__Validation_Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Primed_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis_Types", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "BrightTALK_User_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Modified_by_CRM_System", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_SIC_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ESD_Access_on_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCAccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sensitivity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Prime_Exclude", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contacting_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "High_Touch", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Total_Employees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis_Software_Used", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "PURL_Name_Try", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Bizo_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Contact_Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Company_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Evaluation_Team_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score__TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SIC_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"bd040833-8f66-22c0-1b51-bd4ccf5eef7c\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/17904\", \"name\": \"Workbook published ds\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "ownership", - "aspect": { - "value": "{\"owners\": [{\"owner\": \"urn:li:corpuser:jawadqu@gmail.com\", \"type\": \"DATAOWNER\"}], \"lastModified\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "staff_last_name": "", - "amount": "", - "customer_first_name": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", - "title": "published sheet ds", - "description": "", - "lastModified": { - "created": { - "time": 1641951867000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642658093000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Workbook published ds/published sheet ds" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "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:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/test publish datasource/test publish datasource.d8d4c0ea-3162-fa11-31e6-26675da44a38" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "test publish datasource", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "customer_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Custom SQL Query", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "staff_last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "staff_first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "customer_last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "amount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "customer_first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "payment_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "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:marketo-marketo,Marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity6" - ] - } - }, - { - "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": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity11" - ] - } - }, - { - "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": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity10" - ] - } - }, - { - "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": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity7" - ] - } - }, - { - "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": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.campaignsTable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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:postgres,dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/address" - ] - } - }, - { - "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": "postal_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "city_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "district", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:postgres,dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/actor" - ] - } - }, - { - "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": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "actor_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.People,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/People" - ] - } - }, - { - "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": "Person", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Returns" - ] - } - }, - { - "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": "Returned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Orders" - ] - } - }, - { - "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": "Product ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country/Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Segment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sub-Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Profit", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Product Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Row ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Discount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Mode", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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.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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/UniqueSeat" - ] - } - }, - { - "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": "ssiCreateProfessionalBrand", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssi", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiBuildStrongRelationship", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiFindRightPeople", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "totalConnections", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "contractId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ssiEngageWithInsights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "firstName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "recordedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "lastName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.Activity,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Activity" - ] - } - }, - { - "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": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "seatId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/ActivityOutcome" - ] - } - }, - { - "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": "memberIdentityKey", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityOutcomeType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "activityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "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:oracle,Oracle Eloqua.activitiesAll,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/activitiesAll" - ] - } - }, - { - "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": "ExternalId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NumberOfPages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "RawData", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IsWebTrackingOptedIn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Url", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "VisitorExternalId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ReferrerUrl", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "FirstPageViewUrl", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailAddress", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailRecipientId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "VisitorId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailClickedThruLink", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SubjectLine", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DeploymentId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityDate", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IpAddress", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "WebVisitId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailWebLink", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AssetName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ContactId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "CampaignId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "EmailSendType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ActivityType", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:oracle,Oracle Eloqua.contacts,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/contacts" - ] - } - }, - { - "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": "Email_Address_Domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Appointment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Medium", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Record_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesnet_OwnerID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_annual_sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "zzLead_Score__TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Form_Submission", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Agreement_on_File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "LS__High_Value_Website_Content", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_sic", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Parent_Account", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Create_Lead_Hold", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "referring_keyword", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Remarket_Details", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Marketing_Opt_Out__For_Harvested_Names", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source_Detail__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email_Display_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Processing_Control", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Webinar_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Global_Parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "job_level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSLA_on_File", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "AWS_AccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAE", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Last_Modified_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ProServ_Opportunty_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_sub_industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Teleteam_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact_Us_Request_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Annual_Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Territory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TFT_Course_Expiration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Why_Remarket", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Rating__Last_SPOI", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Total_Employees_Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TShirt_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Record_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_web_site", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source_Detail__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_Date_Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Do_Not_Process", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Established_In", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Exp_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "IDNumber", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCTerritoryID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Visit_Date_and_Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Program", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Standard_Form", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Master_Asset__temp", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Point_of_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesnetAccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referring_Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name_Analyzer__Gender_Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_Login", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Nurture_Track", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesnetContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Microsoft_Custom_URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Rating__Historical_AllTime_HAT", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel_Manager_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score__Historical_AllTime_HAT", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Author_Profiles__URL", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_employee_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MS_CRM_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Website_Visit_Date_and_Time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "License_Key_Offline_Activation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "CIBC__Trial_Portal__TPEP__20150218", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Industry", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Data_Geek_Profile", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "adgroup", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Hash", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Subscription_Page_Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCLeadID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_Lead_Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Product__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Viz_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Business_Structure", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total_Pages", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date_Created", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adused", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Optin_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "OptIn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Qualifying_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_SFDC_Campaign_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online_Trial_Exp_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Session", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score_247", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server_Trial_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Fax", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDC_EmailOptOut", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Annual_Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Source__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "email_notification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Address_2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TAC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SalesLogix_Account_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Score", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Email_Received_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date_Modified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword__Original", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salesperson", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Doing_Business_As", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Reason_Primed__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "distribution", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Job_Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buy_Registration_Date__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted_Contact_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Dept", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "External_Notification_Email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_3", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Authorized_User_Check_on_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "First_and_Last_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "referring_source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Website", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Server_Trial_End_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SheerID_Manual_Verification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Mobile_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Salutation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Total_Visits", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_TSI_Birthday", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ContactID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "No_Promo", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Student_Verification_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Confidence_Level", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Deleted_Lead_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Online_Trial_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, - "jsonProps": null - }, - { - "fieldPath": "DB_DUNS_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Buying_Horizon", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_CEO_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Partner_Agreement_Status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "HAT_Rating", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TQL_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_User_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State_or_Province", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Referrs_Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "RBC__Trial_Portal__TPEP__20150218", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Language_Site__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SHA256_Hashed_Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Task_Exclusion", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Browser_Language__Most_Recent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Campaign", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "StrikeIron_Country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Score__Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Email_Address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Owner", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_GUID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Open_Grade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contact_Owner_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Preferred_Language", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Zip_or_Postal_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Area_Of_Interest", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Comment_1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Known_User", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Channel_Manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Partner_Program_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Modified_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Partner_Program_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NNC", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Eloqua_Slice_Score__Enterprise", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "TC14_Confirmation_Code__Attendees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_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, - "jsonProps": null - }, - { - "fieldPath": "Company_Revenue", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Trial_Request", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_Owner_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Password", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Highest_Stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MD5_Hashed_Business_Phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_zip", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Annual_Sales_Indicator", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_title", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "db_country", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Name_Analyzer__Validation_Results", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Siebel_OnDemand_Contact_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Primed_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis_Types", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "BrightTALK_User_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Last_Modified_by_CRM_System", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_SIC_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "ESD_Access_on_Contact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Permission_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SFDCAccountID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sensitivity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Slice_Prime_Exclude", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Contacting_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "High_Touch", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_Total_Employees", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "MSCRM_Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Analysis_Software_Used", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "PURL_Name_Try", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Bizo_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Account_Contact_Role", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "NetSuite_Company_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Evaluation_Team_Size", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_Score__TEST", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "SIC_Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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": "container", - "entityUrn": "urn:li:container:cfeba171582ea275283530b820a74cb5", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"fdd1cc3d-f75d-3569-bc10-e2eb80496a3e\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15625\", \"name\": \"Regional\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:cfeba171582ea275283530b820a74cb5", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:cfeba171582ea275283530b820a74cb5", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:cfeba171582ea275283530b820a74cb5", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "ownership", - "aspect": { - "value": "{\"owners\": [{\"owner\": \"urn:li:corpuser:jawadqu@gmail.com\", \"type\": \"DATAOWNER\"}], \"lastModified\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,01de32e4-ce64-27c3-8ae2-3af58263d785)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Minutes of Delay": "", - "Ontime Category": "", - "Date": "", - "Minutes of Delay per Flight": "formula: [Minutes of Delay]/[Number of Flights]", - "% of Delayed Flights": "formula: Sum(if contains([Ontime Category], \"Delayed\") then [Number of Flights] else 0 end)/sum([Number of Flights])", - "Number of Flights": "", - "Carrier Name": "", - "Airport Name": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/FlightDelays", - "title": "Flight Delays", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,f812ed00-5fbb-a8a5-3346-91a5df2c41cf,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Flight Delays" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,01de32e4-ce64-27c3-8ae2-3af58263d785)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,0e0f7370-941f-7101-d52b-5206d7466fba)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Median": "", - "Date": "formula: DATE(DATEPARSE(\"yyyy/MM\",[Year]))", - "Year": "", - "Above Median?": "formula: IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/GlobalTemperatures/Scatter", - "title": "Scatter", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,62284efc-6980-2217-c9cd-7fe336329275,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Scatter" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,0e0f7370-941f-7101-d52b-5206d7466fba)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,16229c21-3e95-ebac-2e05-272f3e95c45f)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "County": "", - "Regional Obesity Rate": "formula: {FIXED [Region]: AVG([Adult Obesity (% of pop)])}", - "Adult Obesity (% of pop)": "", - "State": "", - "Food Insecure (% of pop)": "", - "Physically Inactive (% of pop)": "", - "Above or Below?": "formula: IF ROUND([Regional Obesity Rate],2) = ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN \"on par with\"\r\nELSEIF ROUND([Regional Obesity Rate],2) < ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN STR(ROUND(([Difference from Region]*100),2)) + \"% above\"\r\nELSE STR(ROUND(([Difference from Region]*100),2)) + \"% below\"\r\nEND", - "Adult Smokers (% of pop)": "", - "Region": "", - "Difference from Region": "formula: ABS(ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)- ROUND([Regional Obesity Rate],2))" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/Obesity/Obesity Map", - "title": "Obesity Map", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,8eb071bf-364e-262b-c761-1ab465b2f214,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Obesity Map" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,16229c21-3e95-ebac-2e05-272f3e95c45f)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,1e7aafe6-bedb-0ca1-056d-764f6a1da6ff)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Date": "", - "Value": "", - "Decade": "", - "Metric": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/Economy/S&P Forward Returns", - "title": "S&P Forward Returns", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/S&P Forward Returns" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,1e7aafe6-bedb-0ca1-056d-764f6a1da6ff)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,24a8bfc1-f095-80e9-3efa-3c34fc42f1fc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Median": "", - "Date": "formula: DATE(DATEPARSE(\"yyyy/MM\",[Year]))", - "Year": "", - "Above Median?": "formula: IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/GlobalTemperatures/Heat Map", - "title": "Heat Map", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,62284efc-6980-2217-c9cd-7fe336329275,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Heat Map" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,24a8bfc1-f095-80e9-3efa-3c34fc42f1fc)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,3259a5fd-271c-5686-4604-d096020abf93)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Date": "", - "Volume": "", - "Company": "", - "Close": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/Stocks", - "title": "Stocks", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3136838d-95a9-a311-2657-b16898a8e574,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Stocks" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,3259a5fd-271c-5686-4604-d096020abf93)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,5280b970-92b0-b949-d7df-2131e31d60ef)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Total Score": "formula: [Math]+[Verbal]+[Writing]", - "True Average": "formula: {SUM([Total Score])/SUM(1)}\r\n//Because this is a table-scoped LOD, filters \r\n//need to be context filters so that they are \r\n//evaluated prior to the calculation", - "College": "", - "Writing": "", - "Math": "", - "Academic Year": "", - "Gender": "", - "Verbal": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/College", - "title": "College", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,5e6c6c79-e728-4bd1-4033-056607c1927a,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/College" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,5280b970-92b0-b949-d7df-2131e31d60ef)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,6e6d6590-d034-6928-ce21-6d0e798aafd3)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Date": "", - "Value": "", - "Decade": "", - "Metric": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/Economy/S&P Returns Vs Conditions", - "title": "S&P Returns Vs Conditions", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/S&P Returns Vs Conditions" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,6e6d6590-d034-6928-ce21-6d0e798aafd3)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,7356a89b-8e06-002f-e856-0c05370c51b6)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Date": "", - "Value": "", - "Set 1": "", - "Decade": "", - "Metric": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/Regional_16397753068010/Economy/S&P Returns by Decade", - "title": "S&P Returns by Decade", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/S&P Returns by Decade" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,7356a89b-8e06-002f-e856-0c05370c51b6)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,75ed8d13-49eb-5153-c704-21c363491961)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "County": "", - "Adult Obesity (% of pop)": "", - "State": "", - "Food Insecure (% of pop)": "", - "Physically Inactive (% of pop)": "", - "Adult Smokers (% of pop)": "", - "Region": "" - }, - "externalUrl": null, - "title": "Obesity Scatter Plot", - "description": "", - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775307000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,8eb071bf-364e-262b-c761-1ab465b2f214,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Obesity Scatter Plot" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,75ed8d13-49eb-5153-c704-21c363491961)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,36349f01-e28f-9c6f-9803-d3fdd4ce20db)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "Obesity", - "description": "", - "charts": [ - "urn:li:chart:(tableau,16229c21-3e95-ebac-2e05-272f3e95c45f)", - "urn:li:chart:(tableau,75ed8d13-49eb-5153-c704-21c363491961)" - ], - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/Obesity", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Obesity" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,36349f01-e28f-9c6f-9803-d3fdd4ce20db)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,39a3ed54-035e-6e57-2ed4-a70261267c6a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "Global Temperatures", - "description": "", - "charts": [ - "urn:li:chart:(tableau,0e0f7370-941f-7101-d52b-5206d7466fba)", - "urn:li:chart:(tableau,24a8bfc1-f095-80e9-3efa-3c34fc42f1fc)" - ], - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/GlobalTemperatures", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Global Temperatures" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,39a3ed54-035e-6e57-2ed4-a70261267c6a)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,d294afb7-3ecc-6ce8-8b78-83081c2fb4c3)", - "aspects": [ - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "externalUrl": null, - "title": "Economy", - "description": "", - "charts": [ - "urn:li:chart:(tableau,1e7aafe6-bedb-0ca1-056d-764f6a1da6ff)", - "urn:li:chart:(tableau,6e6d6590-d034-6928-ce21-6d0e798aafd3)", - "urn:li:chart:(tableau,7356a89b-8e06-002f-e856-0c05370c51b6)" - ], - "lastModified": { - "created": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1639775306000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/Regional_16397753068010/Economy", - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Regional/Economy" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } - }, - { - "auditHeader": null, - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,d294afb7-3ecc-6ce8-8b78-83081c2fb4c3)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,3136838d-95a9-a311-2657-b16898a8e574,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:hyper,9162c518-d001-4394-8a83-d1307ee8be2f.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,3136838d-95a9-a311-2657-b16898a8e574,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Stocks/Stocks.3136838d-95a9-a311-2657-b16898a8e574" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Stocks", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "High", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Low", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Open", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Volume", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Stocks", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Close", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,3136838d-95a9-a311-2657-b16898a8e574,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,3136838d-95a9-a311-2657-b16898a8e574,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,5e6c6c79-e728-4bd1-4033-056607c1927a,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:hyper,494910db-fadc-4aab-8023-1180ab03432b.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,5e6c6c79-e728-4bd1-4033-056607c1927a,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Education/Education.5e6c6c79-e728-4bd1-4033-056607c1927a" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Education", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Total Score", - "jsonPath": null, - "nullable": false, - "description": "formula: [Math]+[Verbal]+[Writing]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Education", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ethnicity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "True Average", - "jsonPath": null, - "nullable": false, - "description": "formula: {SUM([Total Score])/SUM(1)}\r\n//Because this is a table-scoped LOD, filters \r\n//need to be context filters so that they are \r\n//evaluated prior to the calculation", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "College", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Writing", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Major", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Math", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Academic Year", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Gender", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Verbal", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,5e6c6c79-e728-4bd1-4033-056607c1927a,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,5e6c6c79-e728-4bd1-4033-056607c1927a,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,62284efc-6980-2217-c9cd-7fe336329275,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:hyper,b2d6d314-cafc-4445-ba12-2d559d78a67f.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,62284efc-6980-2217-c9cd-7fe336329275,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Global Temperatures/Global Temperatures.62284efc-6980-2217-c9cd-7fe336329275" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Global Temperatures", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Median", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Upper CI", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date", - "jsonPath": null, - "nullable": false, - "description": "formula: DATE(DATEPARSE(\"yyyy/MM\",[Year]))", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Global Temperatures", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lower CI", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Year", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Above Median?", - "jsonPath": null, - "nullable": false, - "description": "formula: IF AVG([Median]) > 0\r\nTHEN \"above median\"\r\nELSEIF AVG([Median]) < 0 \r\nTHEN \"below median\"\r\nELSE \"(at median)\"\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,62284efc-6980-2217-c9cd-7fe336329275,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,62284efc-6980-2217-c9cd-7fe336329275,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,8eb071bf-364e-262b-c761-1ab465b2f214,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:hyper,3a84d583-6fa6-46cc-b99b-87db34934ecb.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,8eb071bf-364e-262b-c761-1ab465b2f214,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Obesity/Obesity.8eb071bf-364e-262b-c761-1ab465b2f214" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Obesity", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "County", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Regional Obesity Rate", - "jsonPath": null, - "nullable": false, - "description": "formula: {FIXED [Region]: AVG([Adult Obesity (% of pop)])}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adult Obesity (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Diabetic (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Food Insecure (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Physically Inactive (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Records", - "jsonPath": null, - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Above or Below?", - "jsonPath": null, - "nullable": false, - "description": "formula: IF ROUND([Regional Obesity Rate],2) = ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN \"on par with\"\r\nELSEIF ROUND([Regional Obesity Rate],2) < ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)\r\n THEN STR(ROUND(([Difference from Region]*100),2)) + \"% above\"\r\nELSE STR(ROUND(([Difference from Region]*100),2)) + \"% below\"\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Adult Smokers (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Obesity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Children in Poverty (% of pop)", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State, County", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:HIERARCHYFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Difference from Region", - "jsonPath": null, - "nullable": false, - "description": "formula: ABS(ROUND({FIXED [State],[County]: AVG([Adult Obesity (% of pop)])},2)- ROUND([Regional Obesity Rate],2))", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,8eb071bf-364e-262b-c761-1ab465b2f214,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,8eb071bf-364e-262b-c761-1ab465b2f214,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,cbe81486-6bb8-2877-cab9-fba86766ba06,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:hyper,18138201-7713-4d0c-8a0c-3a83b8e77022.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Economy/Economy.cbe81486-6bb8-2877-cab9-fba86766ba06" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Economy", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Value", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Set 1", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:SETFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Economy", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Decade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Metric", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,cbe81486-6bb8-2877-cab9-fba86766ba06,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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,f812ed00-5fbb-a8a5-3346-91a5df2c41cf,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:hyper,b89d64a5-dff9-444e-bc46-2eef1347563d.Extract.Extract,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "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:tableau,f812ed00-5fbb-a8a5-3346-91a5df2c41cf,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Flight/Flight.f812ed00-5fbb-a8a5-3346-91a5df2c41cf" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "Flight", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "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": "Minutes of Delay", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ontime Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Carrier Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State, City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:HIERARCHYFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:YEAR" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Minutes of Delay per Flight", - "jsonPath": null, - "nullable": false, - "description": "formula: [Minutes of Delay]/[Number of Flights]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Airport Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "% of Delayed Flights", - "jsonPath": null, - "nullable": false, - "description": "formula: Sum(if contains([Ontime Category], \"Delayed\") then [Number of Flights] else 0 end)/sum([Number of Flights])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Number of Flights", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Carrier Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Airport Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Flight", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "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,f812ed00-5fbb-a8a5-3346-91a5df2c41cf,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"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,f812ed00-5fbb-a8a5-3346-91a5df2c41cf,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:cfeba171582ea275283530b820a74cb5\"}", - "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:marketo-marketo,Marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity6" - ] - } - }, - { - "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": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity11" - ] - } - }, - { - "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": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Link_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity10" - ] - } - }, - { - "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": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "User_Agent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Platform", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/Marketo/activity7" - ] - } - }, - { - "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": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Has_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Activity_Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Lead_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Mailing_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Step_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Test_Variant", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:marketo-marketo,Marketo.campaignsTable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Project 2/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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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:postgres,dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/address" - ] - } - }, - { - "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": "postal_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "phone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "city_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "district", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "address_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:postgres,dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)/actor" - ] - } - }, - { - "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": "last_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "actor_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.People,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/People" - ] - } - }, - { - "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": "Person", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Returns" - ] - } - }, - { - "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": "Returned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:external,Sample - Superstore.xls.Orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Superstore Datasource/Orders" - ] - } - }, - { - "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": "Product ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Postal Code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "City", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "State", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Country/Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sales", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Segment", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Sub-Category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Profit", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Product Name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Customer ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Order ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Row ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Discount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Ship Mode", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Region", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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.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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "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, - "jsonProps": null - }, + }, + "fields": [ { - "fieldPath": "no_proceed_checkout", + "fieldPath": "customer_id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "billable", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "name", + "fieldPath": "Custom SQL Query", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "description", + "fieldPath": "staff_last_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "meta", + "fieldPath": "staff_first_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "ordered_item_link", + "fieldPath": "customer_last_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "sys_mod_count", + "fieldPath": "amount", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "sc_ic_version", + "fieldPath": "customer_first_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "jsonProps": null }, { - "fieldPath": "image", + "fieldPath": "payment_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, "glossaryTerms": null, "isPartOfKey": false, "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,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", + "entityKeyAspect": null, + "changeType": "UPSERT", + "aspectName": "subTypes", + "aspect": { + "value": "{\"typeNames\": [\"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,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", + "entityKeyAspect": null, + "changeType": "UPSERT", + "aspectName": "container", + "aspect": { + "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", + "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:marketo-marketo,Marketo.activity6,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Marketo/activity6" + ] + } + }, + { + "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", + "fieldPath": "Test_Variant", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121064,16 +40033,16 @@ "jsonProps": null }, { - "fieldPath": "short_description", + "fieldPath": "Mailing_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121081,16 +40050,16 @@ "jsonProps": null }, { - "fieldPath": "sys_policy", + "fieldPath": "Campaign_Run_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121098,16 +40067,16 @@ "jsonProps": null }, { - "fieldPath": "roles", + "fieldPath": "id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121115,16 +40084,16 @@ "jsonProps": null }, { - "fieldPath": "picture", + "fieldPath": "Activity_Date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121132,16 +40101,16 @@ "jsonProps": null }, { - "fieldPath": "list_price", + "fieldPath": "Choice_Number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121149,16 +40118,16 @@ "jsonProps": null }, { - "fieldPath": "no_order_now", + "fieldPath": "Step_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121166,16 +40135,16 @@ "jsonProps": null }, { - "fieldPath": "vendor", + "fieldPath": "Campaign_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121183,16 +40152,16 @@ "jsonProps": null }, { - "fieldPath": "sc_ic_item_staging", + "fieldPath": "Lead_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121200,7 +40169,7 @@ "jsonProps": null }, { - "fieldPath": "no_order", + "fieldPath": "Has_Predictive", "jsonPath": null, "nullable": false, "description": "", @@ -121215,18 +40184,74 @@ "glossaryTerms": null, "isPartOfKey": false, "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:marketo-marketo,Marketo.activity11,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Marketo/activity11" + ] + } + }, + { + "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": "entitlement_script", + "fieldPath": "Campaign_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121234,16 +40259,16 @@ "jsonProps": null }, { - "fieldPath": "active", + "fieldPath": "Campaign_Run_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121251,7 +40276,7 @@ "jsonProps": null }, { - "fieldPath": "icon", + "fieldPath": "Link", "jsonPath": null, "nullable": false, "description": "", @@ -121268,33 +40293,16 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "start_closed", + "fieldPath": "Test_Variant", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121302,7 +40310,7 @@ "jsonProps": null }, { - "fieldPath": "sys_package", + "fieldPath": "Platform", "jsonPath": null, "nullable": false, "description": "", @@ -121319,16 +40327,16 @@ "jsonProps": null }, { - "fieldPath": "group", + "fieldPath": "id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121336,16 +40344,16 @@ "jsonProps": null }, { - "fieldPath": "sys_replace_on_upgrade", + "fieldPath": "Activity_Date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121353,7 +40361,7 @@ "jsonProps": null }, { - "fieldPath": "cost", + "fieldPath": "Choice_Number", "jsonPath": null, "nullable": false, "description": "", @@ -121362,24 +40370,7 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "use_sc_layout", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121387,16 +40378,16 @@ "jsonProps": null }, { - "fieldPath": "location", + "fieldPath": "Mailing_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121404,16 +40395,16 @@ "jsonProps": null }, { - "fieldPath": "availability", + "fieldPath": "Step_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121421,16 +40412,16 @@ "jsonProps": null }, { - "fieldPath": "model", + "fieldPath": "Lead_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121438,7 +40429,7 @@ "jsonProps": null }, { - "fieldPath": "custom_cart", + "fieldPath": "Link_ID", "jsonPath": null, "nullable": false, "description": "", @@ -121455,16 +40446,16 @@ "jsonProps": null }, { - "fieldPath": "mobile_picture", + "fieldPath": "Is_Predictive", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121472,7 +40463,7 @@ "jsonProps": null }, { - "fieldPath": "category", + "fieldPath": "Device", "jsonPath": null, "nullable": false, "description": "", @@ -121489,7 +40480,7 @@ "jsonProps": null }, { - "fieldPath": "no_cart", + "fieldPath": "Is_Mobile_Device", "jsonPath": null, "nullable": false, "description": "", @@ -121506,24 +40497,80 @@ "jsonProps": null }, { - "fieldPath": "mobile_hide_price", + "fieldPath": "User_Agent", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:marketo-marketo,Marketo.activity10,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Marketo/activity10" + ] + } + }, + { + "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_created_by", + "fieldPath": "Platform", "jsonPath": null, "nullable": false, "description": "", @@ -121540,7 +40587,7 @@ "jsonProps": null }, { - "fieldPath": "price", + "fieldPath": "Device", "jsonPath": null, "nullable": false, "description": "", @@ -121557,16 +40604,16 @@ "jsonProps": null }, { - "fieldPath": "delivery_time", + "fieldPath": "Choice_Number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121574,16 +40621,16 @@ "jsonProps": null }, { - "fieldPath": "no_search", + "fieldPath": "Lead_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121591,7 +40638,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_on", + "fieldPath": "Activity_Date", "jsonPath": null, "nullable": false, "description": "", @@ -121608,16 +40655,16 @@ "jsonProps": null }, { - "fieldPath": "recurring_frequency", + "fieldPath": "Test_Variant", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121625,16 +40672,16 @@ "jsonProps": null }, { - "fieldPath": "recurring_price", + "fieldPath": "Is_Mobile_Device", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121642,16 +40689,16 @@ "jsonProps": null }, { - "fieldPath": "delivery_plan_script", + "fieldPath": "Has_Predictive", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121659,16 +40706,16 @@ "jsonProps": null }, { - "fieldPath": "visible_bundle", + "fieldPath": "Step_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121676,7 +40723,7 @@ "jsonProps": null }, { - "fieldPath": "sys_update_name", + "fieldPath": "User_Agent", "jsonPath": null, "nullable": false, "description": "", @@ -121693,16 +40740,16 @@ "jsonProps": null }, { - "fieldPath": "sys_name", + "fieldPath": "Mailing_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121710,16 +40757,16 @@ "jsonProps": null }, { - "fieldPath": "visible_guide", + "fieldPath": "Campaign_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121727,16 +40774,16 @@ "jsonProps": null }, { - "fieldPath": "preview", + "fieldPath": "Campaign_Run_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121744,16 +40791,16 @@ "jsonProps": null }, { - "fieldPath": "omit_price", + "fieldPath": "id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121782,12 +40829,12 @@ "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)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,Marketo.activity7,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/prod/tableau/default/Problems/sys_user_group" + "/prod/tableau/default/Marketo/activity7" ] } }, @@ -121817,33 +40864,16 @@ }, "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, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", + "fieldPath": "Test_Variant", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121851,16 +40881,16 @@ "jsonProps": null }, { - "fieldPath": "source", + "fieldPath": "Campaign_Run_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121868,16 +40898,16 @@ "jsonProps": null }, { - "fieldPath": "exclude_manager", + "fieldPath": "Activity_Date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121885,16 +40915,16 @@ "jsonProps": null }, { - "fieldPath": "description", + "fieldPath": "Mailing_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121902,16 +40932,16 @@ "jsonProps": null }, { - "fieldPath": "cost_center", + "fieldPath": "Has_Predictive", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121919,16 +40949,16 @@ "jsonProps": null }, { - "fieldPath": "sys_created_by", + "fieldPath": "id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121936,16 +40966,16 @@ "jsonProps": null }, { - "fieldPath": "parent", + "fieldPath": "Campaign_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121953,7 +40983,7 @@ "jsonProps": null }, { - "fieldPath": "sys_mod_count", + "fieldPath": "Step_ID", "jsonPath": null, "nullable": false, "description": "", @@ -121970,16 +41000,16 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_on", + "fieldPath": "Lead_ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -121987,24 +41017,80 @@ "jsonProps": null }, { - "fieldPath": "u_lucha", + "fieldPath": "Choice_Number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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: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": "sys_id", + "fieldPath": "programName", "jsonPath": null, "nullable": false, "description": "", @@ -122021,7 +41107,7 @@ "jsonProps": null }, { - "fieldPath": "u_lu2", + "fieldPath": "name", "jsonPath": null, "nullable": false, "description": "", @@ -122038,16 +41124,16 @@ "jsonProps": null }, { - "fieldPath": "type", + "fieldPath": "programId", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122055,7 +41141,7 @@ "jsonProps": null }, { - "fieldPath": "roles", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -122072,7 +41158,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_on", + "fieldPath": "createdAt", "jsonPath": null, "nullable": false, "description": "", @@ -122089,33 +41175,16 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "email", + "fieldPath": "id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122123,7 +41192,7 @@ "jsonProps": null }, { - "fieldPath": "manager", + "fieldPath": "workspaceName", "jsonPath": null, "nullable": false, "description": "", @@ -122140,16 +41209,16 @@ "jsonProps": null }, { - "fieldPath": "name", + "fieldPath": "updatedAt", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122172,23 +41241,6 @@ "glossaryTerms": null, "isPartOfKey": false, "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, - "jsonProps": null } ], "primaryKeys": null, @@ -122212,12 +41264,12 @@ "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.address,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/prod/tableau/default/Problems/problem" + "/prod/tableau/default/actor+ (dvdrental)/address" ] } }, @@ -122247,7 +41299,7 @@ }, "fields": [ { - "fieldPath": "opened_by", + "fieldPath": "postal_code", "jsonPath": null, "nullable": false, "description": "", @@ -122256,7 +41308,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122264,16 +41316,16 @@ "jsonProps": null }, { - "fieldPath": "sys_class_name", + "fieldPath": "last_update", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "DBTIMESTAMP", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122281,7 +41333,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_by", + "fieldPath": "phone", "jsonPath": null, "nullable": false, "description": "", @@ -122290,24 +41342,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122315,7 +41350,7 @@ "jsonProps": null }, { - "fieldPath": "closed_by", + "fieldPath": "address2", "jsonPath": null, "nullable": false, "description": "", @@ -122324,7 +41359,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122332,7 +41367,7 @@ "jsonProps": null }, { - "fieldPath": "close_notes", + "fieldPath": "address", "jsonPath": null, "nullable": false, "description": "", @@ -122341,7 +41376,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122349,16 +41384,16 @@ "jsonProps": null }, { - "fieldPath": "made_sla", + "fieldPath": "city_id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "I2", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122366,16 +41401,16 @@ "jsonProps": null }, { - "fieldPath": "state", + "fieldPath": "district", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122383,7 +41418,7 @@ "jsonProps": null }, { - "fieldPath": "related_incidents", + "fieldPath": "address_id", "jsonPath": null, "nullable": false, "description": "", @@ -122392,15 +41427,71 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "I4", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:postgres,dvdrental.public.actor,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/actor+ (dvdrental)/actor" + ] + } + }, + { + "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": "business_duration", + "fieldPath": "last_update", "jsonPath": null, "nullable": false, "description": "", @@ -122409,24 +41500,7 @@ "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "DBTIMESTAMP", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122434,7 +41508,7 @@ "jsonProps": null }, { - "fieldPath": "delivery_task", + "fieldPath": "last_name", "jsonPath": null, "nullable": false, "description": "", @@ -122443,41 +41517,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122485,7 +41525,7 @@ "jsonProps": null }, { - "fieldPath": "sys_id", + "fieldPath": "first_name", "jsonPath": null, "nullable": false, "description": "", @@ -122494,7 +41534,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "STR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122502,7 +41542,7 @@ "jsonProps": null }, { - "fieldPath": "escalation", + "fieldPath": "actor_id", "jsonPath": null, "nullable": false, "description": "", @@ -122511,15 +41551,71 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "I4", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:external,Sample - Superstore.xls.People,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Superstore Datasource/People" + ] + } + }, + { + "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": "business_service", + "fieldPath": "Person", "jsonPath": null, "nullable": false, "description": "", @@ -122528,7 +41624,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122536,7 +41632,7 @@ "jsonProps": null }, { - "fieldPath": "comments_and_work_notes", + "fieldPath": "Region", "jsonPath": null, "nullable": false, "description": "", @@ -122545,15 +41641,71 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:external,Sample - Superstore.xls.Returns,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Superstore Datasource/Returns" + ] + } + }, + { + "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": "rfc", + "fieldPath": "Returned", "jsonPath": null, "nullable": false, "description": "", @@ -122562,7 +41714,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122570,7 +41722,7 @@ "jsonProps": null }, { - "fieldPath": "sys_domain_path", + "fieldPath": "Order ID", "jsonPath": null, "nullable": false, "description": "", @@ -122579,15 +41731,71 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:external,Sample - Superstore.xls.Orders,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Superstore Datasource/Orders" + ] + } + }, + { + "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": "cmdb_ci", + "fieldPath": "Product ID", "jsonPath": null, "nullable": false, "description": "", @@ -122596,7 +41804,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122604,16 +41812,16 @@ "jsonProps": null }, { - "fieldPath": "problem_state", + "fieldPath": "Category", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122621,16 +41829,16 @@ "jsonProps": null }, { - "fieldPath": "delivery_plan", + "fieldPath": "Postal Code", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "I8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122638,7 +41846,7 @@ "jsonProps": null }, { - "fieldPath": "user_input", + "fieldPath": "City", "jsonPath": null, "nullable": false, "description": "", @@ -122647,7 +41855,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122655,16 +41863,16 @@ "jsonProps": null }, { - "fieldPath": "active", + "fieldPath": "Quantity", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "I8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122672,7 +41880,7 @@ "jsonProps": null }, { - "fieldPath": "location", + "fieldPath": "State", "jsonPath": null, "nullable": false, "description": "", @@ -122681,24 +41889,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122706,16 +41897,16 @@ "jsonProps": null }, { - "fieldPath": "calendar_duration", + "fieldPath": "Order Date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "DATE", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122723,7 +41914,7 @@ "jsonProps": null }, { - "fieldPath": "number", + "fieldPath": "Customer Name", "jsonPath": null, "nullable": false, "description": "", @@ -122732,24 +41923,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122757,7 +41931,7 @@ "jsonProps": null }, { - "fieldPath": "work_notes_list", + "fieldPath": "Country/Region", "jsonPath": null, "nullable": false, "description": "", @@ -122766,7 +41940,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122774,16 +41948,16 @@ "jsonProps": null }, { - "fieldPath": "knowledge", + "fieldPath": "Sales", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "R8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122791,7 +41965,7 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_by", + "fieldPath": "Segment", "jsonPath": null, "nullable": false, "description": "", @@ -122800,7 +41974,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122808,7 +41982,7 @@ "jsonProps": null }, { - "fieldPath": "time_worked", + "fieldPath": "Sub-Category", "jsonPath": null, "nullable": false, "description": "", @@ -122817,7 +41991,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122825,7 +41999,7 @@ "jsonProps": null }, { - "fieldPath": "order", + "fieldPath": "Profit", "jsonPath": null, "nullable": false, "description": "", @@ -122834,7 +42008,7 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "R8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122842,7 +42016,7 @@ "jsonProps": null }, { - "fieldPath": "assignment_group", + "fieldPath": "Product Name", "jsonPath": null, "nullable": false, "description": "", @@ -122851,7 +42025,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122859,7 +42033,7 @@ "jsonProps": null }, { - "fieldPath": "upon_approval", + "fieldPath": "Customer ID", "jsonPath": null, "nullable": false, "description": "", @@ -122868,7 +42042,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122876,7 +42050,7 @@ "jsonProps": null }, { - "fieldPath": "company", + "fieldPath": "Order ID", "jsonPath": null, "nullable": false, "description": "", @@ -122885,7 +42059,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122893,16 +42067,16 @@ "jsonProps": null }, { - "fieldPath": "opened_at", + "fieldPath": "Row ID", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "I8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122910,16 +42084,16 @@ "jsonProps": null }, { - "fieldPath": "group_list", + "fieldPath": "Discount", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "R8", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122927,16 +42101,16 @@ "jsonProps": null }, { - "fieldPath": "work_around", + "fieldPath": "Ship Date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "DATE", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122944,7 +42118,7 @@ "jsonProps": null }, { - "fieldPath": "description", + "fieldPath": "Ship Mode", "jsonPath": null, "nullable": false, "description": "", @@ -122953,7 +42127,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -122961,24 +42135,80 @@ "jsonProps": null }, { - "fieldPath": "work_end", + "fieldPath": "Region", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WSTR", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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.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": "correlation_id", + "fieldPath": "time_worked", "jsonPath": null, "nullable": false, "description": "", @@ -122995,16 +42225,16 @@ "jsonProps": null }, { - "fieldPath": "approval_set", + "fieldPath": "work_notes_list", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123012,16 +42242,16 @@ "jsonProps": null }, { - "fieldPath": "urgency", + "fieldPath": "group_list", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123029,16 +42259,16 @@ "jsonProps": null }, { - "fieldPath": "impact", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123046,16 +42276,16 @@ "jsonProps": null }, { - "fieldPath": "short_description", + "fieldPath": "expected_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123063,16 +42293,16 @@ "jsonProps": null }, { - "fieldPath": "approval", + "fieldPath": "due_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123080,7 +42310,7 @@ "jsonProps": null }, { - "fieldPath": "closed_at", + "fieldPath": "work_end", "jsonPath": null, "nullable": false, "description": "", @@ -123097,16 +42327,16 @@ "jsonProps": null }, { - "fieldPath": "known_error", + "fieldPath": "cmdb_ci", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123114,7 +42344,7 @@ "jsonProps": null }, { - "fieldPath": "due_date", + "fieldPath": "business_duration", "jsonPath": null, "nullable": false, "description": "", @@ -123148,7 +42378,7 @@ "jsonProps": null }, { - "fieldPath": "activity_due", + "fieldPath": "closed_at", "jsonPath": null, "nullable": false, "description": "", @@ -123165,24 +42395,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", + "fieldPath": "user_input", "jsonPath": null, "nullable": false, "description": "", @@ -123199,16 +42412,16 @@ "jsonProps": null }, { - "fieldPath": "contact_type", + "fieldPath": "reassignment_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123216,7 +42429,7 @@ "jsonProps": null }, { - "fieldPath": "additional_assignee_list", + "fieldPath": "approval", "jsonPath": null, "nullable": false, "description": "", @@ -123233,7 +42446,7 @@ "jsonProps": null }, { - "fieldPath": "approval_history", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -123250,7 +42463,7 @@ "jsonProps": null }, { - "fieldPath": "reassignment_count", + "fieldPath": "impact", "jsonPath": null, "nullable": false, "description": "", @@ -123267,16 +42480,16 @@ "jsonProps": null }, { - "fieldPath": "follow_up", + "fieldPath": "knowledge", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123284,7 +42497,7 @@ "jsonProps": null }, { - "fieldPath": "comments", + "fieldPath": "closed_by", "jsonPath": null, "nullable": false, "description": "", @@ -123301,16 +42514,16 @@ "jsonProps": null }, { - "fieldPath": "work_notes", + "fieldPath": "calendar_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123318,7 +42531,7 @@ "jsonProps": null }, { - "fieldPath": "parent", + "fieldPath": "delivery_task", "jsonPath": null, "nullable": false, "description": "", @@ -123335,16 +42548,16 @@ "jsonProps": null }, { - "fieldPath": "assigned_to", + "fieldPath": "sla_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123352,7 +42565,7 @@ "jsonProps": null }, { - "fieldPath": "watch_list", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", @@ -123369,7 +42582,7 @@ "jsonProps": null }, { - "fieldPath": "upon_reject", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", @@ -123384,65 +42597,9 @@ "glossaryTerms": null, "isPartOfKey": false, "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", + "fieldPath": "upon_reject", "jsonPath": null, "nullable": false, "description": "", @@ -123459,7 +42616,7 @@ "jsonProps": null }, { - "fieldPath": "correlation_id", + "fieldPath": "upon_approval", "jsonPath": null, "nullable": false, "description": "", @@ -123476,16 +42633,16 @@ "jsonProps": null }, { - "fieldPath": "urgency", + "fieldPath": "approval_history", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123493,16 +42650,16 @@ "jsonProps": null }, { - "fieldPath": "severity", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123510,7 +42667,7 @@ "jsonProps": null }, { - "fieldPath": "business_service", + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", @@ -123527,16 +42684,16 @@ "jsonProps": null }, { - "fieldPath": "location", + "fieldPath": "opened_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123561,16 +42718,16 @@ "jsonProps": null }, { - "fieldPath": "closed_at", + "fieldPath": "escalation", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123578,7 +42735,7 @@ "jsonProps": null }, { - "fieldPath": "parent_incident", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", @@ -123595,7 +42752,7 @@ "jsonProps": null }, { - "fieldPath": "subcategory", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", @@ -123612,7 +42769,7 @@ "jsonProps": null }, { - "fieldPath": "company", + "fieldPath": "comments_and_work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -123629,7 +42786,7 @@ "jsonProps": null }, { - "fieldPath": "caller_id", + "fieldPath": "close_notes", "jsonPath": null, "nullable": false, "description": "", @@ -123646,24 +42803,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "group_list", + "fieldPath": "watch_list", "jsonPath": null, "nullable": false, "description": "", @@ -123680,7 +42820,7 @@ "jsonProps": null }, { - "fieldPath": "correlation_display", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -123697,7 +42837,7 @@ "jsonProps": null }, { - "fieldPath": "resolved_by", + "fieldPath": "opened_by", "jsonPath": null, "nullable": false, "description": "", @@ -123714,7 +42854,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_on", + "fieldPath": "activity_due", "jsonPath": null, "nullable": false, "description": "", @@ -123731,16 +42871,16 @@ "jsonProps": null }, { - "fieldPath": "business_stc", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123748,7 +42888,7 @@ "jsonProps": null }, { - "fieldPath": "sys_domain_path", + "fieldPath": "work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -123765,7 +42905,7 @@ "jsonProps": null }, { - "fieldPath": "parent", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -123782,7 +42922,7 @@ "jsonProps": null }, { - "fieldPath": "category", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", @@ -123799,7 +42939,7 @@ "jsonProps": null }, { - "fieldPath": "user_input", + "fieldPath": "assignment_group", "jsonPath": null, "nullable": false, "description": "", @@ -123816,16 +42956,16 @@ "jsonProps": null }, { - "fieldPath": "number", + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123833,16 +42973,16 @@ "jsonProps": null }, { - "fieldPath": "escalation", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123850,7 +42990,7 @@ "jsonProps": null }, { - "fieldPath": "state", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", @@ -123867,7 +43007,7 @@ "jsonProps": null }, { - "fieldPath": "approval_history", + "fieldPath": "business_service", "jsonPath": null, "nullable": false, "description": "", @@ -123884,7 +43024,7 @@ "jsonProps": null }, { - "fieldPath": "impact", + "fieldPath": "priority", "jsonPath": null, "nullable": false, "description": "", @@ -123901,24 +43041,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", + "fieldPath": "correlation_display", "jsonPath": null, "nullable": false, "description": "", @@ -123935,16 +43058,16 @@ "jsonProps": null }, { - "fieldPath": "child_incidents", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123952,7 +43075,7 @@ "jsonProps": null }, { - "fieldPath": "cmdb_ci", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", @@ -123969,16 +43092,16 @@ "jsonProps": null }, { - "fieldPath": "incident_state", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -123986,7 +43109,7 @@ "jsonProps": null }, { - "fieldPath": "notify", + "fieldPath": "urgency", "jsonPath": null, "nullable": false, "description": "", @@ -124003,7 +43126,7 @@ "jsonProps": null }, { - "fieldPath": "work_notes", + "fieldPath": "number", "jsonPath": null, "nullable": false, "description": "", @@ -124020,7 +43143,7 @@ "jsonProps": null }, { - "fieldPath": "reassignment_count", + "fieldPath": "state", "jsonPath": null, "nullable": false, "description": "", @@ -124037,16 +43160,16 @@ "jsonProps": null }, { - "fieldPath": "contact_type", + "fieldPath": "made_sla", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124054,7 +43177,7 @@ "jsonProps": null }, { - "fieldPath": "opened_by", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", @@ -124071,7 +43194,7 @@ "jsonProps": null }, { - "fieldPath": "sys_class_name", + "fieldPath": "additional_assignee_list", "jsonPath": null, "nullable": false, "description": "", @@ -124088,7 +43211,7 @@ "jsonProps": null }, { - "fieldPath": "problem_id", + "fieldPath": "contact_type", "jsonPath": null, "nullable": false, "description": "", @@ -124105,24 +43228,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "approval", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -124139,33 +43245,89 @@ "jsonProps": null }, { - "fieldPath": "description", + "fieldPath": "follow_up", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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": "order", + "fieldPath": "work_notes_list", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124173,7 +43335,7 @@ "jsonProps": null }, { - "fieldPath": "opened_at", + "fieldPath": "closed_at", "jsonPath": null, "nullable": false, "description": "", @@ -124190,7 +43352,7 @@ "jsonProps": null }, { - "fieldPath": "work_notes_list", + "fieldPath": "user_input", "jsonPath": null, "nullable": false, "description": "", @@ -124207,24 +43369,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "time_worked", + "fieldPath": "requested_for", "jsonPath": null, "nullable": false, "description": "", @@ -124241,16 +43386,16 @@ "jsonProps": null }, { - "fieldPath": "sys_domain", + "fieldPath": "opened_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124258,7 +43403,7 @@ "jsonProps": null }, { - "fieldPath": "caused_by", + "fieldPath": "price", "jsonPath": null, "nullable": false, "description": "", @@ -124275,7 +43420,7 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_by", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", @@ -124292,7 +43437,7 @@ "jsonProps": null }, { - "fieldPath": "upon_reject", + "fieldPath": "number", "jsonPath": null, "nullable": false, "description": "", @@ -124309,7 +43454,7 @@ "jsonProps": null }, { - "fieldPath": "delivery_task", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", @@ -124326,16 +43471,16 @@ "jsonProps": null }, { - "fieldPath": "knowledge", + "fieldPath": "delivery_address", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124343,7 +43488,7 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_on", + "fieldPath": "business_duration", "jsonPath": null, "nullable": false, "description": "", @@ -124360,16 +43505,16 @@ "jsonProps": null }, { - "fieldPath": "calendar_duration", + "fieldPath": "urgency", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124377,16 +43522,16 @@ "jsonProps": null }, { - "fieldPath": "closed_by", + "fieldPath": "work_end", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124394,16 +43539,16 @@ "jsonProps": null }, { - "fieldPath": "comments", + "fieldPath": "due_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124411,7 +43556,7 @@ "jsonProps": null }, { - "fieldPath": "short_description", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", @@ -124428,16 +43573,16 @@ "jsonProps": null }, { - "fieldPath": "assigned_to", + "fieldPath": "made_sla", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124462,16 +43607,16 @@ "jsonProps": null }, { - "fieldPath": "work_end", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124479,16 +43624,16 @@ "jsonProps": null }, { - "fieldPath": "reopen_count", + "fieldPath": "additional_assignee_list", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124513,50 +43658,16 @@ "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, - "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, - "jsonProps": null - }, - { - "fieldPath": "calendar_stc", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124564,7 +43675,7 @@ "jsonProps": null }, { - "fieldPath": "rfc", + "fieldPath": "time_worked", "jsonPath": null, "nullable": false, "description": "", @@ -124581,7 +43692,7 @@ "jsonProps": null }, { - "fieldPath": "delivery_plan", + "fieldPath": "comments_and_work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -124598,7 +43709,7 @@ "jsonProps": null }, { - "fieldPath": "close_code", + "fieldPath": "group_list", "jsonPath": null, "nullable": false, "description": "", @@ -124615,7 +43726,7 @@ "jsonProps": null }, { - "fieldPath": "close_notes", + "fieldPath": "business_service", "jsonPath": null, "nullable": false, "description": "", @@ -124632,16 +43743,16 @@ "jsonProps": null }, { - "fieldPath": "activity_due", + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124649,7 +43760,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_by", + "fieldPath": "cmdb_ci", "jsonPath": null, "nullable": false, "description": "", @@ -124666,16 +43777,16 @@ "jsonProps": null }, { - "fieldPath": "active", + "fieldPath": "requested_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_DATE", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124683,7 +43794,7 @@ "jsonProps": null }, { - "fieldPath": "business_duration", + "fieldPath": "follow_up", "jsonPath": null, "nullable": false, "description": "", @@ -124700,7 +43811,7 @@ "jsonProps": null }, { - "fieldPath": "follow_up", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", @@ -124717,33 +43828,16 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", + "fieldPath": "state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124751,7 +43845,7 @@ "jsonProps": null }, { - "fieldPath": "watch_list", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", @@ -124768,80 +43862,7 @@ "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, - "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", + "fieldPath": "approval_set", "jsonPath": null, "nullable": false, "description": "", @@ -124858,16 +43879,16 @@ "jsonProps": null }, { - "fieldPath": "operational_status", + "fieldPath": "close_notes", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124875,16 +43896,16 @@ "jsonProps": null }, { - "fieldPath": "last_discovered", + "fieldPath": "upon_approval", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124892,7 +43913,7 @@ "jsonProps": null }, { - "fieldPath": "cost_cc", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", @@ -124909,7 +43930,7 @@ "jsonProps": null }, { - "fieldPath": "checked_in", + "fieldPath": "activity_due", "jsonPath": null, "nullable": false, "description": "", @@ -124926,7 +43947,7 @@ "jsonProps": null }, { - "fieldPath": "attributes", + "fieldPath": "contact_type", "jsonPath": null, "nullable": false, "description": "", @@ -124943,7 +43964,7 @@ "jsonProps": null }, { - "fieldPath": "serial_number", + "fieldPath": "approval", "jsonPath": null, "nullable": false, "description": "", @@ -124960,16 +43981,16 @@ "jsonProps": null }, { - "fieldPath": "vendor", + "fieldPath": "calendar_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124977,16 +43998,16 @@ "jsonProps": null }, { - "fieldPath": "ip_address", + "fieldPath": "reassignment_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -124994,7 +44015,7 @@ "jsonProps": null }, { - "fieldPath": "support_group", + "fieldPath": "delivery_task", "jsonPath": null, "nullable": false, "description": "", @@ -125011,7 +44032,7 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_by", + "fieldPath": "approval_history", "jsonPath": null, "nullable": false, "description": "", @@ -125028,16 +44049,16 @@ "jsonProps": null }, { - "fieldPath": "asset", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125045,7 +44066,7 @@ "jsonProps": null }, { - "fieldPath": "sys_domain", + "fieldPath": "request_state", "jsonPath": null, "nullable": false, "description": "", @@ -125062,7 +44083,7 @@ "jsonProps": null }, { - "fieldPath": "supported_by", + "fieldPath": "watch_list", "jsonPath": null, "nullable": false, "description": "", @@ -125079,7 +44100,7 @@ "jsonProps": null }, { - "fieldPath": "invoice_number", + "fieldPath": "upon_reject", "jsonPath": null, "nullable": false, "description": "", @@ -125096,16 +44117,16 @@ "jsonProps": null }, { - "fieldPath": "managed_by", + "fieldPath": "expected_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125113,16 +44134,16 @@ "jsonProps": null }, { - "fieldPath": "fault_count", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125130,7 +44151,7 @@ "jsonProps": null }, { - "fieldPath": "due_in", + "fieldPath": "opened_by", "jsonPath": null, "nullable": false, "description": "", @@ -125147,7 +44168,7 @@ "jsonProps": null }, { - "fieldPath": "cost", + "fieldPath": "work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -125164,16 +44185,16 @@ "jsonProps": null }, { - "fieldPath": "correlation_id", + "fieldPath": "impact", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125181,7 +44202,7 @@ "jsonProps": null }, { - "fieldPath": "justification", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -125198,7 +44219,7 @@ "jsonProps": null }, { - "fieldPath": "sys_created_on", + "fieldPath": "sla_due", "jsonPath": null, "nullable": false, "description": "", @@ -125215,16 +44236,16 @@ "jsonProps": null }, { - "fieldPath": "assigned", + "fieldPath": "correlation_display", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125232,16 +44253,16 @@ "jsonProps": null }, { - "fieldPath": "model_id", + "fieldPath": "priority", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125249,7 +44270,7 @@ "jsonProps": null }, { - "fieldPath": "sys_class_name", + "fieldPath": "stage", "jsonPath": null, "nullable": false, "description": "", @@ -125266,7 +44287,7 @@ "jsonProps": null }, { - "fieldPath": "comments", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", @@ -125300,16 +44321,16 @@ "jsonProps": null }, { - "fieldPath": "company", + "fieldPath": "escalation", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125317,7 +44338,7 @@ "jsonProps": null }, { - "fieldPath": "lease_id", + "fieldPath": "closed_by", "jsonPath": null, "nullable": false, "description": "", @@ -125334,24 +44355,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "cost_center", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -125368,7 +44372,7 @@ "jsonProps": null }, { - "fieldPath": "subcategory", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -125385,24 +44389,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", + "fieldPath": "special_instructions", "jsonPath": null, "nullable": false, "description": "", @@ -125419,16 +44406,16 @@ "jsonProps": null }, { - "fieldPath": "can_print", + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125436,7 +44423,7 @@ "jsonProps": null }, { - "fieldPath": "short_description", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -125453,16 +44440,16 @@ "jsonProps": null }, { - "fieldPath": "model_number", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125470,16 +44457,16 @@ "jsonProps": null }, { - "fieldPath": "name", + "fieldPath": "knowledge", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125487,16 +44474,16 @@ "jsonProps": null }, { - "fieldPath": "start_date", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125504,24 +44491,80 @@ "jsonProps": null }, { - "fieldPath": "discovery_source", + "fieldPath": "calendar_stc", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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": "sys_domain_path", + "fieldPath": "watch_list", "jsonPath": null, "nullable": false, "description": "", @@ -125538,16 +44581,16 @@ "jsonProps": null }, { - "fieldPath": "assigned_to", + "fieldPath": "due_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125555,16 +44598,16 @@ "jsonProps": null }, { - "fieldPath": "category", + "fieldPath": "made_sla", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125572,7 +44615,7 @@ "jsonProps": null }, { - "fieldPath": "schedule", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", @@ -125589,7 +44632,7 @@ "jsonProps": null }, { - "fieldPath": "fqdn", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", @@ -125606,16 +44649,16 @@ "jsonProps": null }, { - "fieldPath": "warranty_expiration", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATE", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125623,7 +44666,7 @@ "jsonProps": null }, { - "fieldPath": "owned_by", + "fieldPath": "cmdb_ci", "jsonPath": null, "nullable": false, "description": "", @@ -125640,7 +44683,7 @@ "jsonProps": null }, { - "fieldPath": "asset_tag", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", @@ -125657,7 +44700,7 @@ "jsonProps": null }, { - "fieldPath": "manufacturer", + "fieldPath": "configuration_item", "jsonPath": null, "nullable": false, "description": "", @@ -125674,24 +44717,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "location", + "fieldPath": "closed_by", "jsonPath": null, "nullable": false, "description": "", @@ -125708,16 +44734,16 @@ "jsonProps": null }, { - "fieldPath": "department", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125725,7 +44751,7 @@ "jsonProps": null }, { - "fieldPath": "sys_updated_on", + "fieldPath": "expected_start", "jsonPath": null, "nullable": false, "description": "", @@ -125742,16 +44768,16 @@ "jsonProps": null }, { - "fieldPath": "checked_out", + "fieldPath": "recurring_price", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125759,16 +44785,16 @@ "jsonProps": null }, { - "fieldPath": "unverified", + "fieldPath": "work_end", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125776,16 +44802,16 @@ "jsonProps": null }, { - "fieldPath": "skip_sync", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125793,7 +44819,7 @@ "jsonProps": null }, { - "fieldPath": "po_number", + "fieldPath": "approval", "jsonPath": null, "nullable": false, "description": "", @@ -125810,7 +44836,7 @@ "jsonProps": null }, { - "fieldPath": "order_date", + "fieldPath": "opened_at", "jsonPath": null, "nullable": false, "description": "", @@ -125827,16 +44853,16 @@ "jsonProps": null }, { - "fieldPath": "gl_account", + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125844,7 +44870,7 @@ "jsonProps": null }, { - "fieldPath": "maintenance_schedule", + "fieldPath": "assignment_group", "jsonPath": null, "nullable": false, "description": "", @@ -125861,24 +44887,7 @@ "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, - "jsonProps": null - }, - { - "fieldPath": "dns_domain", + "fieldPath": "sc_catalog", "jsonPath": null, "nullable": false, "description": "", @@ -125895,16 +44904,16 @@ "jsonProps": null }, { - "fieldPath": "sys_created_by", + "fieldPath": "knowledge", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -125912,7 +44921,7 @@ "jsonProps": null }, { - "fieldPath": "mac_address", + "fieldPath": "stage", "jsonPath": null, "nullable": false, "description": "", @@ -125929,7 +44938,7 @@ "jsonProps": null }, { - "fieldPath": "change_control", + "fieldPath": "correlation_display", "jsonPath": null, "nullable": false, "description": "", @@ -125946,7 +44955,7 @@ "jsonProps": null }, { - "fieldPath": "install_status", + "fieldPath": "reassignment_count", "jsonPath": null, "nullable": false, "description": "", @@ -125963,106 +44972,33 @@ "jsonProps": null }, { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "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:linkedin-snap,Sales Navigator Connection.UniqueSeat,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/UniqueSeat" - ] - } - }, - { - "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": [ + "nativeDataType": "WDC_STRING", + "recursive": false, + "globalTags": null, + "glossaryTerms": null, + "isPartOfKey": false, + "jsonProps": null + }, { - "fieldPath": "ssiCreateProfessionalBrand", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126070,16 +45006,16 @@ "jsonProps": null }, { - "fieldPath": "ssi", + "fieldPath": "user_input", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126087,16 +45023,16 @@ "jsonProps": null }, { - "fieldPath": "ssiBuildStrongRelationship", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126104,16 +45040,16 @@ "jsonProps": null }, { - "fieldPath": "ssiFindRightPeople", + "fieldPath": "activity_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126121,16 +45057,16 @@ "jsonProps": null }, { - "fieldPath": "createdAt", + "fieldPath": "price", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126138,7 +45074,7 @@ "jsonProps": null }, { - "fieldPath": "email", + "fieldPath": "work_notes_list", "jsonPath": null, "nullable": false, "description": "", @@ -126155,16 +45091,16 @@ "jsonProps": null }, { - "fieldPath": "totalConnections", + "fieldPath": "estimated_delivery", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126172,16 +45108,16 @@ "jsonProps": null }, { - "fieldPath": "contractId", + "fieldPath": "additional_assignee_list", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126189,16 +45125,16 @@ "jsonProps": null }, { - "fieldPath": "ssiEngageWithInsights", + "fieldPath": "context", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126206,16 +45142,16 @@ "jsonProps": null }, { - "fieldPath": "seatId", + "fieldPath": "business_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126223,16 +45159,33 @@ "jsonProps": null }, { - "fieldPath": "firstName", + "fieldPath": "approval_set", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", + "recursive": false, + "globalTags": null, + "glossaryTerms": null, + "isPartOfKey": false, + "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, @@ -126240,7 +45193,7 @@ "jsonProps": null }, { - "fieldPath": "recordedAt", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", @@ -126257,7 +45210,7 @@ "jsonProps": null }, { - "fieldPath": "lastName", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", @@ -126272,74 +45225,18 @@ "glossaryTerms": null, "isPartOfKey": false, "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:linkedin-snap,Sales Navigator Connection.Activity,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/Activity" - ] - } - }, - { - "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": "createdAt", + "fieldPath": "state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126347,7 +45244,7 @@ "jsonProps": null }, { - "fieldPath": "memberIdentityKey", + "fieldPath": "business_service", "jsonPath": null, "nullable": false, "description": "", @@ -126364,16 +45261,16 @@ "jsonProps": null }, { - "fieldPath": "activityType", + "fieldPath": "billable", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126381,16 +45278,16 @@ "jsonProps": null }, { - "fieldPath": "seatId", + "fieldPath": "approval_history", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126398,7 +45295,7 @@ "jsonProps": null }, { - "fieldPath": "activityId", + "fieldPath": "recurring_frequency", "jsonPath": null, "nullable": false, "description": "", @@ -126413,65 +45310,9 @@ "glossaryTerms": null, "isPartOfKey": false, "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:linkedin-snap,Sales Navigator Connection.ActivityOutcome,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Sales Navigator Connection/ActivityOutcome" - ] - } - }, - { - "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": "memberIdentityKey", + "fieldPath": "contact_type", "jsonPath": null, "nullable": false, "description": "", @@ -126488,7 +45329,7 @@ "jsonProps": null }, { - "fieldPath": "activityOutcomeType", + "fieldPath": "cat_item", "jsonPath": null, "nullable": false, "description": "", @@ -126505,7 +45346,7 @@ "jsonProps": null }, { - "fieldPath": "activityId", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -126522,80 +45363,24 @@ "jsonProps": null }, { - "fieldPath": "createdAt", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:oracle,Oracle Eloqua.activitiesAll,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Oracle Eloqua/activitiesAll" - ] - } - }, - { - "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": "ExternalId", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", @@ -126612,7 +45397,7 @@ "jsonProps": null }, { - "fieldPath": "NumberOfPages", + "fieldPath": "impact", "jsonPath": null, "nullable": false, "description": "", @@ -126629,7 +45414,7 @@ "jsonProps": null }, { - "fieldPath": "RawData", + "fieldPath": "order_guide", "jsonPath": null, "nullable": false, "description": "", @@ -126646,16 +45431,16 @@ "jsonProps": null }, { - "fieldPath": "IsWebTrackingOptedIn", + "fieldPath": "sla_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126663,7 +45448,7 @@ "jsonProps": null }, { - "fieldPath": "Url", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", @@ -126680,7 +45465,7 @@ "jsonProps": null }, { - "fieldPath": "VisitorExternalId", + "fieldPath": "comments_and_work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -126697,7 +45482,7 @@ "jsonProps": null }, { - "fieldPath": "ReferrerUrl", + "fieldPath": "opened_by", "jsonPath": null, "nullable": false, "description": "", @@ -126714,7 +45499,24 @@ "jsonProps": null }, { - "fieldPath": "FirstPageViewUrl", + "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, + "jsonProps": null + }, + { + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", @@ -126731,7 +45533,7 @@ "jsonProps": null }, { - "fieldPath": "EmailAddress", + "fieldPath": "group_list", "jsonPath": null, "nullable": false, "description": "", @@ -126748,7 +45550,7 @@ "jsonProps": null }, { - "fieldPath": "AssetType", + "fieldPath": "delivery_task", "jsonPath": null, "nullable": false, "description": "", @@ -126765,7 +45567,7 @@ "jsonProps": null }, { - "fieldPath": "EmailRecipientId", + "fieldPath": "number", "jsonPath": null, "nullable": false, "description": "", @@ -126782,16 +45584,16 @@ "jsonProps": null }, { - "fieldPath": "VisitorId", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126799,7 +45601,7 @@ "jsonProps": null }, { - "fieldPath": "EmailClickedThruLink", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", @@ -126816,16 +45618,16 @@ "jsonProps": null }, { - "fieldPath": "Duration", + "fieldPath": "work_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126833,7 +45635,7 @@ "jsonProps": null }, { - "fieldPath": "SubjectLine", + "fieldPath": "request", "jsonPath": null, "nullable": false, "description": "", @@ -126850,16 +45652,16 @@ "jsonProps": null }, { - "fieldPath": "DeploymentId", + "fieldPath": "close_notes", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126867,16 +45669,16 @@ "jsonProps": null }, { - "fieldPath": "ActivityDate", + "fieldPath": "work_notes", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126884,16 +45686,16 @@ "jsonProps": null }, { - "fieldPath": "IpAddress", + "fieldPath": "calendar_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126901,7 +45703,7 @@ "jsonProps": null }, { - "fieldPath": "AssetId", + "fieldPath": "quantity", "jsonPath": null, "nullable": false, "description": "", @@ -126918,16 +45720,16 @@ "jsonProps": null }, { - "fieldPath": "WebVisitId", + "fieldPath": "follow_up", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126935,7 +45737,7 @@ "jsonProps": null }, { - "fieldPath": "EmailWebLink", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -126952,16 +45754,16 @@ "jsonProps": null }, { - "fieldPath": "ActivityId", + "fieldPath": "upon_reject", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126969,16 +45771,16 @@ "jsonProps": null }, { - "fieldPath": "AssetName", + "fieldPath": "closed_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -126986,16 +45788,16 @@ "jsonProps": null }, { - "fieldPath": "ContactId", + "fieldPath": "time_worked", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127003,7 +45805,7 @@ "jsonProps": null }, { - "fieldPath": "CampaignId", + "fieldPath": "escalation", "jsonPath": null, "nullable": false, "description": "", @@ -127020,16 +45822,16 @@ "jsonProps": null }, { - "fieldPath": "EmailSendType", + "fieldPath": "urgency", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127037,7 +45839,7 @@ "jsonProps": null }, { - "fieldPath": "ActivityType", + "fieldPath": "upon_approval", "jsonPath": null, "nullable": false, "description": "", @@ -127075,12 +45877,12 @@ "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:oracle,Oracle Eloqua.contacts,PROD)", + "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/Oracle Eloqua/contacts" + "/prod/tableau/default/Requests/sc_cat_item" ] } }, @@ -127110,16 +45912,169 @@ }, "fields": [ { - "fieldPath": "Email_Address_Domain", + "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, + "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, + "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, + "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, + "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, + "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, + "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, + "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, + "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, + "jsonProps": null + }, + { + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127127,7 +46082,7 @@ "jsonProps": null }, { - "fieldPath": "Last_Login", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", @@ -127144,7 +46099,7 @@ "jsonProps": null }, { - "fieldPath": "Appointment", + "fieldPath": "sys_scope", "jsonPath": null, "nullable": false, "description": "", @@ -127161,7 +46116,7 @@ "jsonProps": null }, { - "fieldPath": "Student_Verification", + "fieldPath": "template", "jsonPath": null, "nullable": false, "description": "", @@ -127178,16 +46133,16 @@ "jsonProps": null }, { - "fieldPath": "Permission_Medium", + "fieldPath": "no_proceed_checkout", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127195,16 +46150,16 @@ "jsonProps": null }, { - "fieldPath": "Record_Type", + "fieldPath": "billable", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127212,7 +46167,7 @@ "jsonProps": null }, { - "fieldPath": "Salesnet_OwnerID", + "fieldPath": "name", "jsonPath": null, "nullable": false, "description": "", @@ -127229,7 +46184,7 @@ "jsonProps": null }, { - "fieldPath": "NetSuite_Contact_ID", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", @@ -127246,7 +46201,7 @@ "jsonProps": null }, { - "fieldPath": "Customer", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -127263,16 +46218,16 @@ "jsonProps": null }, { - "fieldPath": "db_annual_sales", + "fieldPath": "meta", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127280,7 +46235,7 @@ "jsonProps": null }, { - "fieldPath": "zzLead_Score__TEST", + "fieldPath": "ordered_item_link", "jsonPath": null, "nullable": false, "description": "", @@ -127297,16 +46252,16 @@ "jsonProps": null }, { - "fieldPath": "Last_Form_Submission", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127314,16 +46269,16 @@ "jsonProps": null }, { - "fieldPath": "Partner_Agreement_on_File", + "fieldPath": "sc_ic_version", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127331,16 +46286,16 @@ "jsonProps": null }, { - "fieldPath": "Remarket_Date", + "fieldPath": "image", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127348,16 +46303,16 @@ "jsonProps": null }, { - "fieldPath": "LS__High_Value_Website_Content", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127365,7 +46320,7 @@ "jsonProps": null }, { - "fieldPath": "db_sic", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -127382,16 +46337,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Score", + "fieldPath": "sys_policy", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127399,7 +46354,7 @@ "jsonProps": null }, { - "fieldPath": "Parent_Account", + "fieldPath": "roles", "jsonPath": null, "nullable": false, "description": "", @@ -127416,7 +46371,7 @@ "jsonProps": null }, { - "fieldPath": "Create_Lead_Hold", + "fieldPath": "picture", "jsonPath": null, "nullable": false, "description": "", @@ -127433,7 +46388,7 @@ "jsonProps": null }, { - "fieldPath": "referring_keyword", + "fieldPath": "list_price", "jsonPath": null, "nullable": false, "description": "", @@ -127450,16 +46405,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Score_Date__Most_Recent", + "fieldPath": "no_order_now", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127467,7 +46422,7 @@ "jsonProps": null }, { - "fieldPath": "Remarket_Details", + "fieldPath": "vendor", "jsonPath": null, "nullable": false, "description": "", @@ -127484,7 +46439,7 @@ "jsonProps": null }, { - "fieldPath": "Marketing_Opt_Out__For_Harvested_Names", + "fieldPath": "sc_ic_item_staging", "jsonPath": null, "nullable": false, "description": "", @@ -127501,16 +46456,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Source_Detail__Most_Recent", + "fieldPath": "no_order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127518,7 +46473,7 @@ "jsonProps": null }, { - "fieldPath": "Email_Display_Name", + "fieldPath": "entitlement_script", "jsonPath": null, "nullable": false, "description": "", @@ -127535,16 +46490,16 @@ "jsonProps": null }, { - "fieldPath": "Account_Type", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127552,7 +46507,7 @@ "jsonProps": null }, { - "fieldPath": "Processing_Control", + "fieldPath": "icon", "jsonPath": null, "nullable": false, "description": "", @@ -127569,16 +46524,16 @@ "jsonProps": null }, { - "fieldPath": "Campaign_ID__Most_Recent", + "fieldPath": "ignore_price", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127586,16 +46541,16 @@ "jsonProps": null }, { - "fieldPath": "Webinar_ID", + "fieldPath": "start_closed", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127603,7 +46558,7 @@ "jsonProps": null }, { - "fieldPath": "Global_Parent", + "fieldPath": "sys_package", "jsonPath": null, "nullable": false, "description": "", @@ -127620,7 +46575,7 @@ "jsonProps": null }, { - "fieldPath": "Last_SFDC_Campaign_Status", + "fieldPath": "group", "jsonPath": null, "nullable": false, "description": "", @@ -127637,16 +46592,16 @@ "jsonProps": null }, { - "fieldPath": "Campaign_ID__Original", + "fieldPath": "sys_replace_on_upgrade", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127654,16 +46609,16 @@ "jsonProps": null }, { - "fieldPath": "First_Name", + "fieldPath": "cost", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_FLOAT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127671,16 +46626,16 @@ "jsonProps": null }, { - "fieldPath": "job_level", + "fieldPath": "use_sc_layout", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127688,7 +46643,7 @@ "jsonProps": null }, { - "fieldPath": "MSLA_on_File", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -127705,7 +46660,7 @@ "jsonProps": null }, { - "fieldPath": "AWS_AccountID", + "fieldPath": "availability", "jsonPath": null, "nullable": false, "description": "", @@ -127722,7 +46677,7 @@ "jsonProps": null }, { - "fieldPath": "TAE", + "fieldPath": "model", "jsonPath": null, "nullable": false, "description": "", @@ -127739,16 +46694,16 @@ "jsonProps": null }, { - "fieldPath": "Slice_Last_Modified_Date", + "fieldPath": "custom_cart", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127756,16 +46711,16 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Slice_Score", + "fieldPath": "mobile_picture", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127773,7 +46728,7 @@ "jsonProps": null }, { - "fieldPath": "ProServ_Opportunty_ID", + "fieldPath": "category", "jsonPath": null, "nullable": false, "description": "", @@ -127790,16 +46745,33 @@ "jsonProps": null }, { - "fieldPath": "db_sub_industry", + "fieldPath": "no_cart", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", + "recursive": false, + "globalTags": null, + "glossaryTerms": null, + "isPartOfKey": false, + "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, @@ -127807,16 +46779,16 @@ "jsonProps": null }, { - "fieldPath": "Teleteam_Date", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127824,7 +46796,7 @@ "jsonProps": null }, { - "fieldPath": "Contact_Us_Request_Type", + "fieldPath": "price", "jsonPath": null, "nullable": false, "description": "", @@ -127841,16 +46813,16 @@ "jsonProps": null }, { - "fieldPath": "DB_Annual_Sales", + "fieldPath": "delivery_time", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127858,16 +46830,16 @@ "jsonProps": null }, { - "fieldPath": "Territory", + "fieldPath": "no_search", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127875,7 +46847,7 @@ "jsonProps": null }, { - "fieldPath": "TFT_Course_Expiration", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", @@ -127892,7 +46864,7 @@ "jsonProps": null }, { - "fieldPath": "Why_Remarket", + "fieldPath": "recurring_frequency", "jsonPath": null, "nullable": false, "description": "", @@ -127909,7 +46881,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Rating__Last_SPOI", + "fieldPath": "recurring_price", "jsonPath": null, "nullable": false, "description": "", @@ -127926,7 +46898,7 @@ "jsonProps": null }, { - "fieldPath": "MSCRM_Contact_ID", + "fieldPath": "delivery_plan_script", "jsonPath": null, "nullable": false, "description": "", @@ -127943,16 +46915,16 @@ "jsonProps": null }, { - "fieldPath": "DB_Total_Employees_Indicator", + "fieldPath": "visible_bundle", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -127960,7 +46932,7 @@ "jsonProps": null }, { - "fieldPath": "TShirt_Size", + "fieldPath": "sys_update_name", "jsonPath": null, "nullable": false, "description": "", @@ -127977,7 +46949,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Record_Type", + "fieldPath": "sys_name", "jsonPath": null, "nullable": false, "description": "", @@ -127994,16 +46966,16 @@ "jsonProps": null }, { - "fieldPath": "Industry", + "fieldPath": "visible_guide", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128011,7 +46983,7 @@ "jsonProps": null }, { - "fieldPath": "SFDCContactID", + "fieldPath": "preview", "jsonPath": null, "nullable": false, "description": "", @@ -128028,24 +47000,80 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Contact_ID", + "fieldPath": "omit_price", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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": "db_web_site", + "fieldPath": "u_u", "jsonPath": null, "nullable": false, "description": "", @@ -128062,7 +47090,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Source_Detail__Original", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -128079,16 +47107,16 @@ "jsonProps": null }, { - "fieldPath": "SFDC_Date_Created", + "fieldPath": "source", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128096,16 +47124,16 @@ "jsonProps": null }, { - "fieldPath": "Do_Not_Process", + "fieldPath": "exclude_manager", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128113,7 +47141,7 @@ "jsonProps": null }, { - "fieldPath": "Siebel_OnDemand_Account_ID", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -128130,7 +47158,7 @@ "jsonProps": null }, { - "fieldPath": "DB_Established_In", + "fieldPath": "cost_center", "jsonPath": null, "nullable": false, "description": "", @@ -128147,16 +47175,16 @@ "jsonProps": null }, { - "fieldPath": "Trial_Exp_Date__Most_Recent", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128164,7 +47192,7 @@ "jsonProps": null }, { - "fieldPath": "IDNumber", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", @@ -128181,16 +47209,16 @@ "jsonProps": null }, { - "fieldPath": "NetSuite_Lead_ID", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128198,16 +47226,16 @@ "jsonProps": null }, { - "fieldPath": "MD5_Hashed_Mobile_Phone", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128215,7 +47243,7 @@ "jsonProps": null }, { - "fieldPath": "Address_1", + "fieldPath": "u_lucha", "jsonPath": null, "nullable": false, "description": "", @@ -128232,7 +47260,7 @@ "jsonProps": null }, { - "fieldPath": "SFDCTerritoryID", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", @@ -128249,7 +47277,7 @@ "jsonProps": null }, { - "fieldPath": "Salesperson_Email", + "fieldPath": "u_lu2", "jsonPath": null, "nullable": false, "description": "", @@ -128266,7 +47294,7 @@ "jsonProps": null }, { - "fieldPath": "Last_Visit_Date_and_Time", + "fieldPath": "type", "jsonPath": null, "nullable": false, "description": "", @@ -128283,7 +47311,7 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Program", + "fieldPath": "roles", "jsonPath": null, "nullable": false, "description": "", @@ -128300,16 +47328,16 @@ "jsonProps": null }, { - "fieldPath": "Department", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128317,7 +47345,7 @@ "jsonProps": null }, { - "fieldPath": "Standard_Form", + "fieldPath": "default_assignee", "jsonPath": null, "nullable": false, "description": "", @@ -128334,7 +47362,7 @@ "jsonProps": null }, { - "fieldPath": "Master_Asset__temp", + "fieldPath": "email", "jsonPath": null, "nullable": false, "description": "", @@ -128351,7 +47379,7 @@ "jsonProps": null }, { - "fieldPath": "Partner_Point_of_Contact", + "fieldPath": "manager", "jsonPath": null, "nullable": false, "description": "", @@ -128368,7 +47396,7 @@ "jsonProps": null }, { - "fieldPath": "db_state", + "fieldPath": "name", "jsonPath": null, "nullable": false, "description": "", @@ -128385,16 +47413,16 @@ "jsonProps": null }, { - "fieldPath": "Device", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128402,24 +47430,80 @@ "jsonProps": null }, { - "fieldPath": "SalesnetAccountID", + "fieldPath": "include_members", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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": "Referring_Website", + "fieldPath": "opened_by", "jsonPath": null, "nullable": false, "description": "", @@ -128436,7 +47520,7 @@ "jsonProps": null }, { - "fieldPath": "Name_Analyzer__Gender_Results", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", @@ -128453,16 +47537,16 @@ "jsonProps": null }, { - "fieldPath": "First_Login", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128470,16 +47554,16 @@ "jsonProps": null }, { - "fieldPath": "Nurture_Track", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128487,7 +47571,7 @@ "jsonProps": null }, { - "fieldPath": "Address_3", + "fieldPath": "closed_by", "jsonPath": null, "nullable": false, "description": "", @@ -128504,7 +47588,7 @@ "jsonProps": null }, { - "fieldPath": "db_industry", + "fieldPath": "close_notes", "jsonPath": null, "nullable": false, "description": "", @@ -128521,16 +47605,16 @@ "jsonProps": null }, { - "fieldPath": "SalesnetContactID", + "fieldPath": "made_sla", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128538,16 +47622,16 @@ "jsonProps": null }, { - "fieldPath": "Customer_Date", + "fieldPath": "state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128555,16 +47639,16 @@ "jsonProps": null }, { - "fieldPath": "Microsoft_Custom_URL", + "fieldPath": "related_incidents", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128572,16 +47656,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Rating__Historical_AllTime_HAT", + "fieldPath": "business_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128589,7 +47673,7 @@ "jsonProps": null }, { - "fieldPath": "Channel_Manager_Email", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", @@ -128606,16 +47690,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Score__Historical_AllTime_HAT", + "fieldPath": "delivery_task", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128623,16 +47707,16 @@ "jsonProps": null }, { - "fieldPath": "Author_Profiles__URL", + "fieldPath": "priority", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128640,16 +47724,16 @@ "jsonProps": null }, { - "fieldPath": "db_employee_count", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128657,7 +47741,7 @@ "jsonProps": null }, { - "fieldPath": "Comment_2", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", @@ -128674,16 +47758,16 @@ "jsonProps": null }, { - "fieldPath": "MS_CRM_Account_ID", + "fieldPath": "escalation", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128691,16 +47775,16 @@ "jsonProps": null }, { - "fieldPath": "Last_Website_Visit_Date_and_Time", + "fieldPath": "business_service", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128708,7 +47792,7 @@ "jsonProps": null }, { - "fieldPath": "License_Key_Offline_Activation", + "fieldPath": "comments_and_work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -128725,7 +47809,7 @@ "jsonProps": null }, { - "fieldPath": "CIBC__Trial_Portal__TPEP__20150218", + "fieldPath": "rfc", "jsonPath": null, "nullable": false, "description": "", @@ -128742,7 +47826,7 @@ "jsonProps": null }, { - "fieldPath": "DB_Industry", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", @@ -128759,7 +47843,7 @@ "jsonProps": null }, { - "fieldPath": "Data_Geek_Profile", + "fieldPath": "cmdb_ci", "jsonPath": null, "nullable": false, "description": "", @@ -128776,16 +47860,16 @@ "jsonProps": null }, { - "fieldPath": "adgroup", + "fieldPath": "problem_state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128793,7 +47877,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Source__Most_Recent", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", @@ -128810,7 +47894,7 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Slice_Hash", + "fieldPath": "user_input", "jsonPath": null, "nullable": false, "description": "", @@ -128827,16 +47911,16 @@ "jsonProps": null }, { - "fieldPath": "Subscription_Page_Link", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128844,7 +47928,7 @@ "jsonProps": null }, { - "fieldPath": "SFDCLeadID", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -128861,16 +47945,16 @@ "jsonProps": null }, { - "fieldPath": "SFDC_Lead_Rating", + "fieldPath": "expected_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128878,16 +47962,16 @@ "jsonProps": null }, { - "fieldPath": "Trial_Product__Most_Recent", + "fieldPath": "calendar_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128895,7 +47979,7 @@ "jsonProps": null }, { - "fieldPath": "Viz_ID", + "fieldPath": "number", "jsonPath": null, "nullable": false, "description": "", @@ -128912,16 +47996,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Stage", + "fieldPath": "sla_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128929,7 +48013,7 @@ "jsonProps": null }, { - "fieldPath": "DB_Business_Structure", + "fieldPath": "work_notes_list", "jsonPath": null, "nullable": false, "description": "", @@ -128946,16 +48030,16 @@ "jsonProps": null }, { - "fieldPath": "Total_Pages", + "fieldPath": "knowledge", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -128963,7 +48047,7 @@ "jsonProps": null }, { - "fieldPath": "Mobile_Phone", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -128980,7 +48064,7 @@ "jsonProps": null }, { - "fieldPath": "Country", + "fieldPath": "time_worked", "jsonPath": null, "nullable": false, "description": "", @@ -128997,16 +48081,16 @@ "jsonProps": null }, { - "fieldPath": "SalesLogix_Contact_ID", + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129014,16 +48098,16 @@ "jsonProps": null }, { - "fieldPath": "Date_Created", + "fieldPath": "assignment_group", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129031,7 +48115,7 @@ "jsonProps": null }, { - "fieldPath": "Last_SFDC_Campaign_ID", + "fieldPath": "upon_approval", "jsonPath": null, "nullable": false, "description": "", @@ -129048,7 +48132,7 @@ "jsonProps": null }, { - "fieldPath": "Adused", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", @@ -129065,7 +48149,7 @@ "jsonProps": null }, { - "fieldPath": "Optin_Date", + "fieldPath": "opened_at", "jsonPath": null, "nullable": false, "description": "", @@ -129082,7 +48166,7 @@ "jsonProps": null }, { - "fieldPath": "OptIn", + "fieldPath": "group_list", "jsonPath": null, "nullable": false, "description": "", @@ -129099,7 +48183,7 @@ "jsonProps": null }, { - "fieldPath": "SHA256_Hashed_Email_Address", + "fieldPath": "work_around", "jsonPath": null, "nullable": false, "description": "", @@ -129116,7 +48200,7 @@ "jsonProps": null }, { - "fieldPath": "Company", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -129133,7 +48217,7 @@ "jsonProps": null }, { - "fieldPath": "Qualifying_Date", + "fieldPath": "work_end", "jsonPath": null, "nullable": false, "description": "", @@ -129150,7 +48234,7 @@ "jsonProps": null }, { - "fieldPath": "Last_SFDC_Campaign_Name", + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", @@ -129167,7 +48251,7 @@ "jsonProps": null }, { - "fieldPath": "Online_Trial_Exp_Date__Most_Recent", + "fieldPath": "approval_set", "jsonPath": null, "nullable": false, "description": "", @@ -129184,16 +48268,16 @@ "jsonProps": null }, { - "fieldPath": "Session", + "fieldPath": "urgency", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129201,16 +48285,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Score_247", + "fieldPath": "impact", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129218,7 +48302,7 @@ "jsonProps": null }, { - "fieldPath": "Platform", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -129235,7 +48319,7 @@ "jsonProps": null }, { - "fieldPath": "Server_Trial_Type", + "fieldPath": "approval", "jsonPath": null, "nullable": false, "description": "", @@ -129252,16 +48336,16 @@ "jsonProps": null }, { - "fieldPath": "Fax", + "fieldPath": "closed_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129269,16 +48353,16 @@ "jsonProps": null }, { - "fieldPath": "SFDC_EmailOptOut", + "fieldPath": "known_error", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129286,16 +48370,16 @@ "jsonProps": null }, { - "fieldPath": "Annual_Revenue", + "fieldPath": "due_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129303,16 +48387,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Source__Original", + "fieldPath": "work_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129320,16 +48404,16 @@ "jsonProps": null }, { - "fieldPath": "Last_Name", + "fieldPath": "activity_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129337,16 +48421,16 @@ "jsonProps": null }, { - "fieldPath": "Student_Verification_ID", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129354,7 +48438,7 @@ "jsonProps": null }, { - "fieldPath": "email_notification", + "fieldPath": "correlation_display", "jsonPath": null, "nullable": false, "description": "", @@ -129371,7 +48455,7 @@ "jsonProps": null }, { - "fieldPath": "Address_2", + "fieldPath": "contact_type", "jsonPath": null, "nullable": false, "description": "", @@ -129388,7 +48472,7 @@ "jsonProps": null }, { - "fieldPath": "TAC", + "fieldPath": "additional_assignee_list", "jsonPath": null, "nullable": false, "description": "", @@ -129405,7 +48489,7 @@ "jsonProps": null }, { - "fieldPath": "SalesLogix_Account_ID", + "fieldPath": "approval_history", "jsonPath": null, "nullable": false, "description": "", @@ -129422,7 +48506,7 @@ "jsonProps": null }, { - "fieldPath": "Slice_Score", + "fieldPath": "reassignment_count", "jsonPath": null, "nullable": false, "description": "", @@ -129431,7 +48515,7 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129439,7 +48523,7 @@ "jsonProps": null }, { - "fieldPath": "Last_Email_Received_Date", + "fieldPath": "follow_up", "jsonPath": null, "nullable": false, "description": "", @@ -129456,7 +48540,7 @@ "jsonProps": null }, { - "fieldPath": "Siebel_OnDemand_Lead_ID", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", @@ -129473,24 +48557,7 @@ "jsonProps": null }, { - "fieldPath": "Date_Modified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "Keyword__Original", + "fieldPath": "work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -129507,7 +48574,7 @@ "jsonProps": null }, { - "fieldPath": "Salesperson", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", @@ -129524,7 +48591,7 @@ "jsonProps": null }, { - "fieldPath": "DB_Doing_Business_As", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", @@ -129541,7 +48608,7 @@ "jsonProps": null }, { - "fieldPath": "Reason_Primed__Most_Recent", + "fieldPath": "watch_list", "jsonPath": null, "nullable": false, "description": "", @@ -129558,7 +48625,7 @@ "jsonProps": null }, { - "fieldPath": "distribution", + "fieldPath": "upon_reject", "jsonPath": null, "nullable": false, "description": "", @@ -129573,9 +48640,65 @@ "glossaryTerms": null, "isPartOfKey": false, "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": "MD5_Hashed_Email_Address", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", @@ -129592,7 +48715,7 @@ "jsonProps": null }, { - "fieldPath": "Job_Role", + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", @@ -129609,16 +48732,16 @@ "jsonProps": null }, { - "fieldPath": "Buy_Registration_Date__Most_Recent", + "fieldPath": "urgency", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129626,16 +48749,16 @@ "jsonProps": null }, { - "fieldPath": "Deleted_Contact_Date", + "fieldPath": "severity", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129643,7 +48766,7 @@ "jsonProps": null }, { - "fieldPath": "Dept", + "fieldPath": "business_service", "jsonPath": null, "nullable": false, "description": "", @@ -129660,7 +48783,7 @@ "jsonProps": null }, { - "fieldPath": "External_Notification_Email", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", @@ -129677,16 +48800,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_ID", + "fieldPath": "approval_set", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129694,16 +48817,16 @@ "jsonProps": null }, { - "fieldPath": "Comment_3", + "fieldPath": "closed_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129711,7 +48834,7 @@ "jsonProps": null }, { - "fieldPath": "Authorized_User_Check_on_Contact", + "fieldPath": "parent_incident", "jsonPath": null, "nullable": false, "description": "", @@ -129728,7 +48851,7 @@ "jsonProps": null }, { - "fieldPath": "First_and_Last_Name", + "fieldPath": "subcategory", "jsonPath": null, "nullable": false, "description": "", @@ -129745,7 +48868,7 @@ "jsonProps": null }, { - "fieldPath": "referring_source", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", @@ -129762,7 +48885,7 @@ "jsonProps": null }, { - "fieldPath": "Website", + "fieldPath": "caller_id", "jsonPath": null, "nullable": false, "description": "", @@ -129779,7 +48902,7 @@ "jsonProps": null }, { - "fieldPath": "Server_Trial_End_Date", + "fieldPath": "resolved_at", "jsonPath": null, "nullable": false, "description": "", @@ -129796,7 +48919,7 @@ "jsonProps": null }, { - "fieldPath": "SheerID_Manual_Verification", + "fieldPath": "group_list", "jsonPath": null, "nullable": false, "description": "", @@ -129813,7 +48936,7 @@ "jsonProps": null }, { - "fieldPath": "SHA256_Hashed_Mobile_Phone", + "fieldPath": "correlation_display", "jsonPath": null, "nullable": false, "description": "", @@ -129830,7 +48953,7 @@ "jsonProps": null }, { - "fieldPath": "Salutation", + "fieldPath": "resolved_by", "jsonPath": null, "nullable": false, "description": "", @@ -129847,16 +48970,16 @@ "jsonProps": null }, { - "fieldPath": "Total_Visits", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129864,16 +48987,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Status", + "fieldPath": "business_stc", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129881,16 +49004,16 @@ "jsonProps": null }, { - "fieldPath": "Partner_TSI_Birthday", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129898,16 +49021,16 @@ "jsonProps": null }, { - "fieldPath": "ContactID", + "fieldPath": "parent", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129915,7 +49038,7 @@ "jsonProps": null }, { - "fieldPath": "No_Promo", + "fieldPath": "category", "jsonPath": null, "nullable": false, "description": "", @@ -129932,7 +49055,7 @@ "jsonProps": null }, { - "fieldPath": "Student_Verification_Status", + "fieldPath": "user_input", "jsonPath": null, "nullable": false, "description": "", @@ -129949,16 +49072,16 @@ "jsonProps": null }, { - "fieldPath": "Confidence_Level", + "fieldPath": "number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129966,16 +49089,16 @@ "jsonProps": null }, { - "fieldPath": "Company_Size", + "fieldPath": "escalation", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -129983,16 +49106,16 @@ "jsonProps": null }, { - "fieldPath": "Deleted_Lead_Date", + "fieldPath": "state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130000,16 +49123,16 @@ "jsonProps": null }, { - "fieldPath": "Online_Trial_Start_Date", + "fieldPath": "approval_history", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130017,16 +49140,16 @@ "jsonProps": null }, { - "fieldPath": "DB_DUNS_Number", + "fieldPath": "impact", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130034,16 +49157,16 @@ "jsonProps": null }, { - "fieldPath": "Business_Phone", + "fieldPath": "expected_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130051,7 +49174,7 @@ "jsonProps": null }, { - "fieldPath": "Buying_Horizon", + "fieldPath": "additional_assignee_list", "jsonPath": null, "nullable": false, "description": "", @@ -130068,16 +49191,16 @@ "jsonProps": null }, { - "fieldPath": "DB_CEO_Name", + "fieldPath": "child_incidents", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130085,7 +49208,7 @@ "jsonProps": null }, { - "fieldPath": "Owner", + "fieldPath": "cmdb_ci", "jsonPath": null, "nullable": false, "description": "", @@ -130102,16 +49225,16 @@ "jsonProps": null }, { - "fieldPath": "Account_Partner_Agreement_Status", + "fieldPath": "incident_state", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130119,16 +49242,16 @@ "jsonProps": null }, { - "fieldPath": "Keyword__Most_Recent", + "fieldPath": "notify", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130136,7 +49259,7 @@ "jsonProps": null }, { - "fieldPath": "HAT_Rating", + "fieldPath": "work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -130153,16 +49276,16 @@ "jsonProps": null }, { - "fieldPath": "TQL_Date", + "fieldPath": "reassignment_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130170,7 +49293,7 @@ "jsonProps": null }, { - "fieldPath": "Account_User_Name", + "fieldPath": "contact_type", "jsonPath": null, "nullable": false, "description": "", @@ -130187,7 +49310,7 @@ "jsonProps": null }, { - "fieldPath": "Comment__Most_Recent", + "fieldPath": "opened_by", "jsonPath": null, "nullable": false, "description": "", @@ -130204,7 +49327,7 @@ "jsonProps": null }, { - "fieldPath": "State_or_Province", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", @@ -130221,7 +49344,7 @@ "jsonProps": null }, { - "fieldPath": "Referrs_Name", + "fieldPath": "problem_id", "jsonPath": null, "nullable": false, "description": "", @@ -130238,16 +49361,16 @@ "jsonProps": null }, { - "fieldPath": "RBC__Trial_Portal__TPEP__20150218", + "fieldPath": "due_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130255,7 +49378,7 @@ "jsonProps": null }, { - "fieldPath": "Language_Site__Most_Recent", + "fieldPath": "approval", "jsonPath": null, "nullable": false, "description": "", @@ -130272,7 +49395,7 @@ "jsonProps": null }, { - "fieldPath": "SHA256_Hashed_Business_Phone", + "fieldPath": "description", "jsonPath": null, "nullable": false, "description": "", @@ -130289,7 +49412,7 @@ "jsonProps": null }, { - "fieldPath": "Trial_Task_Exclusion", + "fieldPath": "order", "jsonPath": null, "nullable": false, "description": "", @@ -130298,7 +49421,7 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130306,16 +49429,16 @@ "jsonProps": null }, { - "fieldPath": "Browser_Language__Most_Recent", + "fieldPath": "opened_at", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130323,7 +49446,7 @@ "jsonProps": null }, { - "fieldPath": "Last_Campaign", + "fieldPath": "work_notes_list", "jsonPath": null, "nullable": false, "description": "", @@ -130340,16 +49463,16 @@ "jsonProps": null }, { - "fieldPath": "StrikeIron_Country", + "fieldPath": "priority", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130357,16 +49480,16 @@ "jsonProps": null }, { - "fieldPath": "Slice_Score__Enterprise", + "fieldPath": "time_worked", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130374,7 +49497,7 @@ "jsonProps": null }, { - "fieldPath": "Email_Address", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", @@ -130391,7 +49514,7 @@ "jsonProps": null }, { - "fieldPath": "Account_Owner", + "fieldPath": "caused_by", "jsonPath": null, "nullable": false, "description": "", @@ -130408,7 +49531,7 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_GUID", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -130425,16 +49548,16 @@ "jsonProps": null }, { - "fieldPath": "Open_Grade", + "fieldPath": "upon_reject", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130442,7 +49565,7 @@ "jsonProps": null }, { - "fieldPath": "Contact_Owner_ID", + "fieldPath": "delivery_task", "jsonPath": null, "nullable": false, "description": "", @@ -130459,16 +49582,16 @@ "jsonProps": null }, { - "fieldPath": "Preferred_Language", + "fieldPath": "knowledge", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130476,16 +49599,16 @@ "jsonProps": null }, { - "fieldPath": "Zip_or_Postal_Code", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130493,16 +49616,16 @@ "jsonProps": null }, { - "fieldPath": "Area_Of_Interest", + "fieldPath": "calendar_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130510,7 +49633,7 @@ "jsonProps": null }, { - "fieldPath": "Comment_1", + "fieldPath": "closed_by", "jsonPath": null, "nullable": false, "description": "", @@ -130527,7 +49650,7 @@ "jsonProps": null }, { - "fieldPath": "Title", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", @@ -130544,7 +49667,7 @@ "jsonProps": null }, { - "fieldPath": "Known_User", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -130561,7 +49684,7 @@ "jsonProps": null }, { - "fieldPath": "Channel_Manager", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", @@ -130578,7 +49701,7 @@ "jsonProps": null }, { - "fieldPath": "Partner_Program_Type", + "fieldPath": "assignment_group", "jsonPath": null, "nullable": false, "description": "", @@ -130595,7 +49718,7 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Slice_Modified_Date", + "fieldPath": "work_end", "jsonPath": null, "nullable": false, "description": "", @@ -130612,16 +49735,16 @@ "jsonProps": null }, { - "fieldPath": "Account_Partner_Program_Type", + "fieldPath": "reopen_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130629,16 +49752,16 @@ "jsonProps": null }, { - "fieldPath": "NNC", + "fieldPath": "work_start", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130646,16 +49769,16 @@ "jsonProps": null }, { - "fieldPath": "Eloqua_Slice_Score__Enterprise", + "fieldPath": "made_sla", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130663,16 +49786,16 @@ "jsonProps": null }, { - "fieldPath": "TC14_Confirmation_Code__Attendees", + "fieldPath": "sys_mod_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130680,16 +49803,16 @@ "jsonProps": null }, { - "fieldPath": "Trial_Start_Date", + "fieldPath": "calendar_stc", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130697,7 +49820,7 @@ "jsonProps": null }, { - "fieldPath": "Company_Revenue", + "fieldPath": "rfc", "jsonPath": null, "nullable": false, "description": "", @@ -130714,7 +49837,7 @@ "jsonProps": null }, { - "fieldPath": "Trial_Request", + "fieldPath": "delivery_plan", "jsonPath": null, "nullable": false, "description": "", @@ -130731,7 +49854,7 @@ "jsonProps": null }, { - "fieldPath": "Asset", + "fieldPath": "close_code", "jsonPath": null, "nullable": false, "description": "", @@ -130748,7 +49871,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Owner_ID", + "fieldPath": "close_notes", "jsonPath": null, "nullable": false, "description": "", @@ -130765,16 +49888,16 @@ "jsonProps": null }, { - "fieldPath": "Account_Password", + "fieldPath": "activity_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130782,7 +49905,7 @@ "jsonProps": null }, { - "fieldPath": "Highest_Stage", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", @@ -130799,16 +49922,16 @@ "jsonProps": null }, { - "fieldPath": "MD5_Hashed_Business_Phone", + "fieldPath": "active", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130816,16 +49939,16 @@ "jsonProps": null }, { - "fieldPath": "Permission_Source", + "fieldPath": "business_duration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130833,16 +49956,16 @@ "jsonProps": null }, { - "fieldPath": "db_zip", + "fieldPath": "follow_up", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130850,7 +49973,7 @@ "jsonProps": null }, { - "fieldPath": "Lead_Type", + "fieldPath": "comments_and_work_notes", "jsonPath": null, "nullable": false, "description": "", @@ -130867,7 +49990,7 @@ "jsonProps": null }, { - "fieldPath": "DB_Annual_Sales_Indicator", + "fieldPath": "upon_approval", "jsonPath": null, "nullable": false, "description": "", @@ -130884,7 +50007,7 @@ "jsonProps": null }, { - "fieldPath": "db_title", + "fieldPath": "watch_list", "jsonPath": null, "nullable": false, "description": "", @@ -130901,33 +50024,89 @@ "jsonProps": null }, { - "fieldPath": "db_country", + "fieldPath": "sla_due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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": "Name_Analyzer__Validation_Results", + "fieldPath": "first_discovered", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130935,16 +50114,16 @@ "jsonProps": null }, { - "fieldPath": "Siebel_OnDemand_Contact_ID", + "fieldPath": "operational_status", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -130952,7 +50131,7 @@ "jsonProps": null }, { - "fieldPath": "Primed_Date", + "fieldPath": "last_discovered", "jsonPath": null, "nullable": false, "description": "", @@ -130969,7 +50148,7 @@ "jsonProps": null }, { - "fieldPath": "Analysis_Types", + "fieldPath": "cost_cc", "jsonPath": null, "nullable": false, "description": "", @@ -130986,16 +50165,16 @@ "jsonProps": null }, { - "fieldPath": "BrightTALK_User_ID", + "fieldPath": "checked_in", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131003,7 +50182,7 @@ "jsonProps": null }, { - "fieldPath": "City", + "fieldPath": "attributes", "jsonPath": null, "nullable": false, "description": "", @@ -131020,24 +50199,7 @@ "jsonProps": null }, { - "fieldPath": "Last_Modified_by_CRM_System", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "jsonProps": null - }, - { - "fieldPath": "DB_SIC_Code", + "fieldPath": "serial_number", "jsonPath": null, "nullable": false, "description": "", @@ -131054,7 +50216,7 @@ "jsonProps": null }, { - "fieldPath": "ESD_Access_on_Contact", + "fieldPath": "vendor", "jsonPath": null, "nullable": false, "description": "", @@ -131071,16 +50233,16 @@ "jsonProps": null }, { - "fieldPath": "Permission_Date", + "fieldPath": "ip_address", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131088,7 +50250,7 @@ "jsonProps": null }, { - "fieldPath": "SFDCAccountID", + "fieldPath": "support_group", "jsonPath": null, "nullable": false, "description": "", @@ -131105,7 +50267,7 @@ "jsonProps": null }, { - "fieldPath": "Sensitivity", + "fieldPath": "sys_updated_by", "jsonPath": null, "nullable": false, "description": "", @@ -131122,7 +50284,7 @@ "jsonProps": null }, { - "fieldPath": "Slice_Prime_Exclude", + "fieldPath": "asset", "jsonPath": null, "nullable": false, "description": "", @@ -131139,16 +50301,16 @@ "jsonProps": null }, { - "fieldPath": "Contacting_Date", + "fieldPath": "sys_domain", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131156,7 +50318,7 @@ "jsonProps": null }, { - "fieldPath": "High_Touch", + "fieldPath": "supported_by", "jsonPath": null, "nullable": false, "description": "", @@ -131173,16 +50335,16 @@ "jsonProps": null }, { - "fieldPath": "DB_Total_Employees", + "fieldPath": "invoice_number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131190,7 +50352,7 @@ "jsonProps": null }, { - "fieldPath": "MSCRM_Lead_ID", + "fieldPath": "managed_by", "jsonPath": null, "nullable": false, "description": "", @@ -131207,16 +50369,16 @@ "jsonProps": null }, { - "fieldPath": "Analysis_Software_Used", + "fieldPath": "fault_count", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131224,7 +50386,7 @@ "jsonProps": null }, { - "fieldPath": "PURL_Name_Try", + "fieldPath": "due_in", "jsonPath": null, "nullable": false, "description": "", @@ -131241,7 +50403,7 @@ "jsonProps": null }, { - "fieldPath": "Bizo_ID", + "fieldPath": "cost", "jsonPath": null, "nullable": false, "description": "", @@ -131258,7 +50420,7 @@ "jsonProps": null }, { - "fieldPath": "Account_Contact_Role", + "fieldPath": "correlation_id", "jsonPath": null, "nullable": false, "description": "", @@ -131275,7 +50437,7 @@ "jsonProps": null }, { - "fieldPath": "NetSuite_Company_ID", + "fieldPath": "justification", "jsonPath": null, "nullable": false, "description": "", @@ -131292,16 +50454,16 @@ "jsonProps": null }, { - "fieldPath": "Evaluation_Team_Size", + "fieldPath": "sys_created_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131309,16 +50471,16 @@ "jsonProps": null }, { - "fieldPath": "Lead_Score__TEST", + "fieldPath": "assigned", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_FLOAT", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131326,7 +50488,7 @@ "jsonProps": null }, { - "fieldPath": "SIC_Code", + "fieldPath": "model_id", "jsonPath": null, "nullable": false, "description": "", @@ -131341,74 +50503,18 @@ "glossaryTerms": null, "isPartOfKey": false, "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:hyper,9162c518-d001-4394-8a83-d1307ee8be2f.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Stocks/Extract" - ] - } - }, - { - "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": "Date", + "fieldPath": "sys_class_name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "DBDATE", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131416,16 +50522,16 @@ "jsonProps": null }, { - "fieldPath": "Number of Records", + "fieldPath": "comments", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "I8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131433,16 +50539,16 @@ "jsonProps": null }, { - "fieldPath": "Close", + "fieldPath": "sys_id", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131450,16 +50556,16 @@ "jsonProps": null }, { - "fieldPath": "Low", + "fieldPath": "company", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131467,7 +50573,7 @@ "jsonProps": null }, { - "fieldPath": "Company", + "fieldPath": "lease_id", "jsonPath": null, "nullable": false, "description": "", @@ -131476,7 +50582,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131484,16 +50590,16 @@ "jsonProps": null }, { - "fieldPath": "High", + "fieldPath": "monitor", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131501,16 +50607,16 @@ "jsonProps": null }, { - "fieldPath": "Volume", + "fieldPath": "cost_center", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "I8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131518,89 +50624,33 @@ "jsonProps": null }, { - "fieldPath": "Open", + "fieldPath": "subcategory", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:hyper,494910db-fadc-4aab-8023-1180ab03432b.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Education/Extract" - ] - } - }, - { - "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": "College", + "fieldPath": "delivery_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131608,7 +50658,7 @@ "jsonProps": null }, { - "fieldPath": "Major", + "fieldPath": "assignment_group", "jsonPath": null, "nullable": false, "description": "", @@ -131617,7 +50667,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131625,16 +50675,16 @@ "jsonProps": null }, { - "fieldPath": "Verbal", + "fieldPath": "can_print", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131642,7 +50692,7 @@ "jsonProps": null }, { - "fieldPath": "Ethnicity", + "fieldPath": "short_description", "jsonPath": null, "nullable": false, "description": "", @@ -131651,7 +50701,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131659,16 +50709,16 @@ "jsonProps": null }, { - "fieldPath": "Academic Year", + "fieldPath": "model_number", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "I8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131676,16 +50726,16 @@ "jsonProps": null }, { - "fieldPath": "Math", + "fieldPath": "name", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131693,16 +50743,16 @@ "jsonProps": null }, { - "fieldPath": "Gender", + "fieldPath": "start_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131710,80 +50760,24 @@ "jsonProps": null }, { - "fieldPath": "Writing", + "fieldPath": "discovery_source", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:hyper,b2d6d314-cafc-4445-ba12-2d559d78a67f.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Global Temperatures/Extract" - ] - } - }, - { - "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": "Year", + "fieldPath": "sys_domain_path", "jsonPath": null, "nullable": false, "description": "", @@ -131792,7 +50786,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131800,16 +50794,16 @@ "jsonProps": null }, { - "fieldPath": "Median", + "fieldPath": "assigned_to", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131817,16 +50811,16 @@ "jsonProps": null }, { - "fieldPath": "Lower CI", + "fieldPath": "category", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131834,80 +50828,24 @@ "jsonProps": null }, { - "fieldPath": "Upper CI", + "fieldPath": "schedule", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:hyper,3a84d583-6fa6-46cc-b99b-87db34934ecb.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Obesity/Extract" - ] - } - }, - { - "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": "County", + "fieldPath": "fqdn", "jsonPath": null, "nullable": false, "description": "", @@ -131916,7 +50854,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131924,16 +50862,16 @@ "jsonProps": null }, { - "fieldPath": "Children in Poverty (% of pop)", + "fieldPath": "warranty_expiration", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_DATE", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131941,16 +50879,16 @@ "jsonProps": null }, { - "fieldPath": "Adult Obesity (% of pop)", + "fieldPath": "owned_by", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131958,16 +50896,16 @@ "jsonProps": null }, { - "fieldPath": "Food Insecure (% of pop)", + "fieldPath": "asset_tag", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131975,16 +50913,16 @@ "jsonProps": null }, { - "fieldPath": "Diabetic (% of pop)", + "fieldPath": "manufacturer", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -131992,16 +50930,16 @@ "jsonProps": null }, { - "fieldPath": "Physically Inactive (% of pop)", + "fieldPath": "purchase_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_DATE", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132009,16 +50947,16 @@ "jsonProps": null }, { - "fieldPath": "Adult Smokers (% of pop)", + "fieldPath": "location", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132026,7 +50964,7 @@ "jsonProps": null }, { - "fieldPath": "Region", + "fieldPath": "department", "jsonPath": null, "nullable": false, "description": "", @@ -132035,7 +50973,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132043,80 +50981,24 @@ "jsonProps": null }, { - "fieldPath": "State", + "fieldPath": "sys_updated_on", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:hyper,18138201-7713-4d0c-8a0c-3a83b8e77022.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Economy/Extract" - ] - } - }, - { - "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": "Date", + "fieldPath": "checked_out", "jsonPath": null, "nullable": false, "description": "", @@ -132125,7 +51007,7 @@ "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "DBTIMESTAMP", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132133,16 +51015,16 @@ "jsonProps": null }, { - "fieldPath": "Value", + "fieldPath": "unverified", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132150,16 +51032,16 @@ "jsonProps": null }, { - "fieldPath": "Decade", + "fieldPath": "skip_sync", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "I8", + "nativeDataType": "WDC_BOOL", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132167,7 +51049,7 @@ "jsonProps": null }, { - "fieldPath": "Metric", + "fieldPath": "po_number", "jsonPath": null, "nullable": false, "description": "", @@ -132176,80 +51058,24 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, "isPartOfKey": false, "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:hyper,b89d64a5-dff9-444e-bc46-2eef1347563d.Extract.Extract,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Flight/Extract" - ] - } - }, - { - "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": "Minutes of Delay", + "fieldPath": "order_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "I8", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132257,7 +51083,7 @@ "jsonProps": null }, { - "fieldPath": "Carrier Code", + "fieldPath": "gl_account", "jsonPath": null, "nullable": false, "description": "", @@ -132266,7 +51092,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132274,7 +51100,7 @@ "jsonProps": null }, { - "fieldPath": "State", + "fieldPath": "maintenance_schedule", "jsonPath": null, "nullable": false, "description": "", @@ -132283,7 +51109,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132291,16 +51117,16 @@ "jsonProps": null }, { - "fieldPath": "Airport Name", + "fieldPath": "install_date", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_DATETIME", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132308,16 +51134,16 @@ "jsonProps": null }, { - "fieldPath": "Date", + "fieldPath": "dns_domain", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "DBDATE", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132325,7 +51151,7 @@ "jsonProps": null }, { - "fieldPath": "Airport Code", + "fieldPath": "sys_created_by", "jsonPath": null, "nullable": false, "description": "", @@ -132334,7 +51160,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132342,16 +51168,16 @@ "jsonProps": null }, { - "fieldPath": "Number of Flights", + "fieldPath": "mac_address", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "R8", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132359,7 +51185,7 @@ "jsonProps": null }, { - "fieldPath": "City", + "fieldPath": "change_control", "jsonPath": null, "nullable": false, "description": "", @@ -132368,7 +51194,7 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_STRING", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132376,16 +51202,16 @@ "jsonProps": null }, { - "fieldPath": "Carrier Name", + "fieldPath": "install_status", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_INT", "recursive": false, "globalTags": null, "glossaryTerms": null, @@ -132393,16 +51219,33 @@ "jsonProps": null }, { - "fieldPath": "Ontime Category", + "fieldPath": "due", "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "STR", + "nativeDataType": "WDC_DATETIME", + "recursive": false, + "globalTags": null, + "glossaryTerms": null, + "isPartOfKey": false, + "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, @@ -132766,6 +51609,25 @@ "properties": null } }, + { + "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": { + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:external,Sample - Superstore.xls.People,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:external,Sample - Superstore.xls.Returns,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:external,Sample - Superstore.xls.Orders,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "contentType": "application/json" + }, + "systemMetadata": { + "lastObserved": 1638860400000, + "runId": "tableau-test", + "registryName": null, + "registryVersion": null, + "properties": null + } + }, { "auditHeader": null, "proposedSnapshot": { diff --git a/metadata-ingestion/tests/integration/tableau/test_tableau.py b/metadata-ingestion/tests/integration/tableau/test_tableau.py index 8aa6d820e77d05..5fb03b7b5eb70c 100644 --- a/metadata-ingestion/tests/integration/tableau/test_tableau.py +++ b/metadata-ingestion/tests/integration/tableau/test_tableau.py @@ -23,20 +23,20 @@ def side_effect_query_metadata(query): if "workbooksConnection (first:0" in query: return _read_response("workbooksConnection_0.json") - if "workbooksConnection (first:8" in query: - return _read_response("workbooksConnection_8.json") + if "workbooksConnection (first:3" in query: + return _read_response("workbooksConnection_all.json") if "publishedDatasourcesConnection (first:0" in query: return _read_response("publishedDatasourcesConnection_0.json") if "publishedDatasourcesConnection (first:2" in query: - return _read_response("publishedDatasourcesConnection_2.json") + return _read_response("publishedDatasourcesConnection_all.json") if "customSQLTablesConnection (first:0" in query: return _read_response("customSQLTablesConnection_0.json") if "customSQLTablesConnection (first:2" in query: - return _read_response("customSQLTablesConnection_2.json") + return _read_response("customSQLTablesConnection_all.json") @freeze_time(FROZEN_TIME)